nixpkgs/pkgs/development/libraries/haskell/network-bytestring/default.nix
Marc Weber f6e24fddbe cosmetic: fix descriptions
svn path=/nixpkgs/trunk/; revision=16398
2009-07-16 15:18:07 +00:00

13 lines
382 B
Nix

{cabal, bytestring, network}:
cabal.mkDerivation (self : {
pname = "network-bytestring";
version = "0.1.2.1";
name = self.fname;
sha256 = "0l5gxwc5pg49qyxb1jy3kn9j66a6pg9frw4c7dn1mrpqicm155am";
extraBuildInputs = [bytestring network];
meta = {
description = "Fast, memory-efficient, low-level socket functions that use Data.ByteStrings instead of Strings";
};
})