summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/network/2.2.1.4.nix
blob: 68c7937497c425011e650d56983528adbf20fc6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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 ];
  };
})