summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/HTTP/4000.1.1.nix
blob: 686ca44654eaa80bc6fb6f68e6c3e3272e7238c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, mtl, network, parsec}:

cabal.mkDerivation (self : {
  pname = "HTTP";
  version = "4000.1.1"; # Haskell Platform 2011.2.0.0
  sha256 = "09khx5fb673a0d7m3bl39xjdxvc60m52rmm4865cha2mby0zidy3";
  propagatedBuildInputs = [mtl network parsec];
  meta = {
    description = "a Haskell library for client-side HTTP";
  };
})