mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
15 lines
414 B
Nix
15 lines
414 B
Nix
{ cabal, parsec }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "network";
|
|
version = "2.2.1.4";
|
|
sha256 = "16a842bee5db116f754b459ef261426b6705a6d79383c6d545c9df5f6329cd25";
|
|
buildDepends = [ parsec ];
|
|
meta = {
|
|
description = "Networking-related facilities";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|