2012-02-16 18:05:41 +04:00
|
|
|
{ cabal, filepath, haskellSrcExts, syb, transformers, uniplate }:
|
2010-11-15 23:28:21 +03:00
|
|
|
|
2011-08-10 03:00:20 +04:00
|
|
|
cabal.mkDerivation (self: {
|
2010-11-15 23:28:21 +03:00
|
|
|
pname = "derive";
|
2012-08-03 19:42:47 +04:00
|
|
|
version = "2.5.10";
|
|
|
|
sha256 = "0r5qcchs6kw080pw95r442yk1ld48lk2imn7apk0ibkx53i4mqls";
|
2011-08-10 03:00:20 +04:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-14 21:00:37 +04:00
|
|
|
buildDepends = [
|
2012-02-16 18:05:41 +04:00
|
|
|
filepath haskellSrcExts syb transformers uniplate
|
2012-02-14 21:00:37 +04:00
|
|
|
];
|
2010-11-15 23:28:21 +03:00
|
|
|
meta = {
|
2011-08-07 22:22:01 +04:00
|
|
|
homepage = "http://community.haskell.org/~ndm/derive/";
|
2010-11-15 23:28:21 +03:00
|
|
|
description = "A program and library to derive instances for data types";
|
2011-08-07 22:22:01 +04:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 13:54:50 +04:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 14:21:28 +04:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-11-15 23:28:21 +03:00
|
|
|
};
|
|
|
|
})
|