mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 22:20:51 +00:00
8150827219
This change affects only GHC 7.6.1.
16 lines
456 B
Nix
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 ];
|
|
};
|
|
})
|