haskell-packages.nix: added storable-record

svn path=/nixpkgs/trunk/; revision=27845
This commit is contained in:
Peter Simons 2011-07-20 18:04:03 +00:00
parent fbad200e88
commit 35312ae76f
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{cabal, utilityHt, transformers}:
cabal.mkDerivation (self : {
pname = "storable-record";
version = "0.0.2.4";
sha256 = "5ed2680dcfc4c3d4fe605d23e797b847fe047b7acd3f4acfd82155c93e72b280";
propagatedBuildInputs = [utilityHt transformers];
meta = {
description = "build a Storable instance of a record type from Storable instances of its elements";
};
})

View File

@ -934,6 +934,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
storableComplex = callPackage ../development/libraries/haskell/storable-complex {};
storableRecord = callPackage ../development/libraries/haskell/storable-record {};
strictConcurrency = callPackage ../development/libraries/haskell/strictConcurrency {};
svgcairo = callPackage ../development/libraries/haskell/svgcairo {};