mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
binary-strict: add haskell pkg
This commit is contained in:
parent
3cc8b15721
commit
6641f5d220
2 changed files with 18 additions and 0 deletions
16
pkgs/development/libraries/haskell/binary-strict/default.nix
Normal file
16
pkgs/development/libraries/haskell/binary-strict/default.nix
Normal 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;
|
||||
};
|
||||
})
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue