packages feed

cabal2nix-2.8.2: test/golden-test-cases/HTTP.nix.golden

{ mkDerivation, array, base, bytestring, case-insensitive, conduit
, conduit-extra, deepseq, fetchurl, http-types, httpd-shed, HUnit
, mtl, network, network-uri, parsec, pureMD5, split, test-framework
, test-framework-hunit, time, wai, warp
}:
mkDerivation {
  pname = "HTTP";
  version = "4000.3.9";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  libraryHaskellDepends = [
    array base bytestring mtl network network-uri parsec time
  ];
  testHaskellDepends = [
    base bytestring case-insensitive conduit conduit-extra deepseq
    http-types httpd-shed HUnit mtl network network-uri pureMD5 split
    test-framework test-framework-hunit wai warp
  ];
  homepage = "https://github.com/haskell/HTTP";
  description = "A library for client-side HTTP";
  license = stdenv.lib.licenses.bsd3;
}