e2c7b54f8c
svn path=/nixpkgs/trunk/; revision=31193
21 lines
651 B
Nix
21 lines
651 B
Nix
{ cabal, haskellSrcExts, syb, transformers, uniplate }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "derive";
|
|
version = "2.5.5";
|
|
sha256 = "1vv7y2jfyxq2abh4avyjwia309a6rylbyiqia1m0ka7zwv2rxd6y";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ 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
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|