Added haskell-{bitarray,containers-deepseq,gd}.

svn path=/nixpkgs/trunk/; revision=31991
This commit is contained in:
Andres Löh
2012-02-03 12:15:00 +00:00
parent cdf1a3a3c6
commit f2d6ca5d02
4 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{ cabal }:
cabal.mkDerivation (self: {
pname = "bitarray";
version = "0.0.1";
sha256 = "01ijysisw70zaw70hx851axw48agfamdqj21rzzhdqd2ww6bwchb";
meta = {
homepage = "http://code.haskell.org/~bkomuves/";
description = "Mutable and immutable bit arrays";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})