d44e55866a
- cabal2nix: updated to version 1.30 - cmdargs: updated to version 0.9.5 - derive: updated to version 2.5.6 - hlint: updated to version 1.8.25 - io-choice: added version 0.0.1 svn path=/nixpkgs/trunk/; revision=33411
20 lines
625 B
Nix
20 lines
625 B
Nix
{ cabal, filepath, haskellSrcExts, syb, transformers, uniplate }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "derive";
|
|
version = "2.5.6";
|
|
sha256 = "1ckxm6s2y9dvlj1785b27a2zvah4radypxjpq7sxn970r6m5dv0h";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
filepath haskellSrcExts syb transformers uniplate
|
|
];
|
|
meta = {
|
|
homepage = "http://community.haskell.org/~ndm/derive/";
|
|
description = "A program and library to derive instances for data types";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|