binary-strict: add haskell pkg

This commit is contained in:
Arseniy Seroka 2014-12-06 18:34:23 +03:00
parent 3cc8b15721
commit 6641f5d220
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, mtl }:
cabal.mkDerivation (self: {
pname = "binary-strict";
version = "0.4.8.1";
sha256 = "07mmh4x8qjpw7w35nxcq8wayy4bagjblbwkpvh3xd38rxpdnl6pi";
buildDepends = [ mtl ];
meta = {
homepage = "http://code.haskell.org/binary-low-level";
description = "Binary deserialisation using strict ByteStrings";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -249,6 +249,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
binary_0_7_2_2 = callPackage ../development/libraries/haskell/binary/0.7.2.2.nix {};
binary = null; # core package since ghc >= 7.2.x
binaryStrict = callPackage ../development/libraries/haskell/binary-strict {};
binaryConduit = callPackage ../development/libraries/haskell/binary-conduit {};
binaryShared = callPackage ../development/libraries/haskell/binary-shared {};