mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
31 lines
694 B
Nix
31 lines
694 B
Nix
{ lib, fetchFromGitHub, buildDunePackage
|
|
, lwt, lwt_ppx, stringext
|
|
, alcotest }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "multipart-form-data";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cryptosense";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-3MYJDvVbPIv/JDiB9nKcLRFC5Qa0afyEfz7hk8MWRII=";
|
|
};
|
|
|
|
buildInputs = [ lwt_ppx ];
|
|
propagatedBuildInputs = [ lwt stringext ];
|
|
|
|
duneVersion = "3";
|
|
|
|
doCheck = true;
|
|
checkInputs = [ alcotest ];
|
|
|
|
meta = {
|
|
description = "Parser for multipart/form-data (RFC2388)";
|
|
homepage = "https://github.com/cryptosense/multipart-form-data";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|