nixpkgs/pkgs/development/libraries/haskell/compdata/default.nix

24 lines
693 B
Nix
Raw Normal View History

2014-05-23 15:54:46 +01:00
{ cabal, deepseq, derive, HUnit, mtl, QuickCheck, testFramework
, testFrameworkHunit, testFrameworkQuickcheck2, thExpandSyns
, transformers, treeView
2014-05-23 15:54:46 +01:00
}:
cabal.mkDerivation (self: {
pname = "compdata";
version = "0.8.1.0";
sha256 = "06bsdhf40b8111k0fmfc53i5kib9n431f07qyj83pq8isgkk33xc";
2014-05-23 15:54:46 +01:00
buildDepends = [
deepseq derive mtl QuickCheck thExpandSyns transformers treeView
2014-05-23 15:54:46 +01:00
];
testDepends = [
deepseq derive HUnit mtl QuickCheck testFramework
testFrameworkHunit testFrameworkQuickcheck2 thExpandSyns
transformers
];
meta = {
description = "Compositional Data Types";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})