nixpkgs/pkgs/development/libraries/haskell/network/2.4.1.2.nix

16 lines
456 B
Nix
Raw Normal View History

{ cabal, parsec }:
cabal.mkDerivation (self: {
pname = "network";
2013-02-22 12:56:26 +01:00
version = "2.4.1.2";
sha256 = "0f7ykdv7xbsr5m3h2ml0hw3nlbnq785m0gr624pwk2s289jwakdh";
buildDepends = [ parsec ];
meta = {
2012-09-17 16:08:39 +02:00
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 ];
};
})