1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 22:20:51 +00:00
nixpkgs/pkgs/development/libraries/haskell/network/2.4.1.0.nix
Peter Simons 8150827219 haskell-network: update 2.4.x branch to version 2.4.1.0
This change affects only GHC 7.6.1.
2013-01-17 11:18:32 +01:00

16 lines
456 B
Nix

{ cabal, parsec }:
cabal.mkDerivation (self: {
pname = "network";
version = "2.4.1.0";
sha256 = "0m44iqlcnpsaa3iqxb4wbx2l1k2ycxzq8v07bwz7br7yyikv16y3";
buildDepends = [ parsec ];
meta = {
homepage = "https://github.com/haskell/network";
description = "Low-level networking interface";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})