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