1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-17 08:28:20 +00:00

Merge pull request #837 from errge/master

Add unix-bytestring haskell library
This commit is contained in:
Evgeny Egorochkin 2013-08-16 12:30:33 -07:00
commit 026f444450
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ cabal }:
cabal.mkDerivation (self: {
pname = "unix-bytestring";
version = "0.3.6";
sha256 = "0m2ndw6r88vb4cqdkd8jg8dlk9h99mp3rand5j1gxxdjfv7q63ap";
meta = {
homepage = "http://code.haskell.org/~wren/";
description = "Unix/Posix-specific functions for ByteStrings";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1996,6 +1996,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
uniqueid = callPackage ../development/libraries/haskell/uniqueid {};
unixBytestring = callPackage ../development/libraries/haskell/unix-bytestring {};
unixCompat = callPackage ../development/libraries/haskell/unix-compat {};
unixProcessConduit = callPackage ../development/libraries/haskell/unix-process-conduit {};