4e9175965c
- clientsession: updated to version 0.7.4.3 - data-default: updated to version 0.4.0 - hoogle: updated to version 4.2.11 - pandoc: updated to version 1.9.2 - yesod-core: updated to version 1.0.0.1 - yesod-form: updated to version 1.0.0.1 - yesod-static: updated to version 1.0.0.1 svn path=/nixpkgs/trunk/; revision=33636
15 lines
412 B
Nix
15 lines
412 B
Nix
{ cabal, dlist }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "data-default";
|
|
version = "0.4.0";
|
|
sha256 = "1pil8dxbk0zl2zw1xj9h2bpwpdriwfd7aj48kh0xpw9yazg3m802";
|
|
buildDepends = [ dlist ];
|
|
meta = {
|
|
description = "A class for types with a default value";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|