25fe5d43fe
- MemoTrie: updated to version 0.4.11 - X11: updated to version 1.6.0 - derive: updated to version 2.5.8 - gloss: updated to version 1.7.1.1 - haskell-src-exts: updated to version 1.13.0 - haskell-src-meta: updated to version 0.5.1.2 - hlint: updated to version 1.8.28 svn path=/nixpkgs/trunk/; revision=33528
20 lines
625 B
Nix
20 lines
625 B
Nix
{ cabal, filepath, haskellSrcExts, syb, transformers, uniplate }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "derive";
|
|
version = "2.5.8";
|
|
sha256 = "0l11pscya7mrn0502q8ndqn551k5aygbm7pihhs0nz8wwzr82xdv";
|
|
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 ];
|
|
};
|
|
})
|