nixpkgs/pkgs/development/libraries/haskell/http-client-multipart/default.nix

18 lines
545 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, httpClient }:
2013-12-09 12:58:47 +01:00
cabal.mkDerivation (self: {
pname = "http-client-multipart";
version = "0.3.0.0";
sha256 = "18za6s3658hgm95rrygghrz0b643c7nkzaimb14v2hv82w3k9crg";
buildDepends = [ httpClient ];
noHaddock = true;
2013-12-09 12:58:47 +01:00
meta = {
homepage = "https://github.com/snoyberg/http-client";
description = "Generate multipart uploads for http-client. (deprecated)";
2013-12-09 12:58:47 +01:00
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})