1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
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 11:58:47 +00:00
cabal.mkDerivation (self: {
pname = "http-client-multipart";
version = "0.3.0.0";
sha256 = "18za6s3658hgm95rrygghrz0b643c7nkzaimb14v2hv82w3k9crg";
buildDepends = [ httpClient ];
noHaddock = true;
2013-12-09 11:58:47 +00:00
meta = {
homepage = "https://github.com/snoyberg/http-client";
description = "Generate multipart uploads for http-client. (deprecated)";
2013-12-09 11:58:47 +00:00
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})