summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/unix-bytestring/default.nix
blob: 174fc925aae7411374fc2de343986d675d1dc86a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ cabal }:

cabal.mkDerivation (self: {
  pname = "unix-bytestring";
  version = "0.3.7";
  sha256 = "1qwgs2bwga057csfa8izq0kc5vwi2vcaz2snlcgp0h9vql3qmvrg";
  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;
  };
})