3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
17 lines
498 B
Nix
17 lines
498 B
Nix
{ cabal, mtl, network, parsec }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "HTTP";
|
|
version = "4000.1.1";
|
|
sha256 = "09khx5fb673a0d7m3bl39xjdxvc60m52rmm4865cha2mby0zidy3";
|
|
buildDepends = [ mtl network parsec ];
|
|
doCheck = false;
|
|
meta = {
|
|
homepage = "http://projects.haskell.org/http/";
|
|
description = "A library for client-side HTTP";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|