nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 28 lines 443 B view raw
1{ 2 lib, 3 ocaml, 4 buildDunePackage, 5 uri, 6 ounit, 7 ppx_sexp_conv, 8 sexplib0, 9}: 10 11buildDunePackage { 12 pname = "uri-sexp"; 13 inherit (uri) version src; 14 15 duneVersion = "3"; 16 17 checkInputs = [ ounit ]; 18 propagatedBuildInputs = [ 19 ppx_sexp_conv 20 sexplib0 21 uri 22 ]; 23 doCheck = lib.versionAtLeast ocaml.version "4.08"; 24 25 meta = uri.meta // { 26 broken = uri.meta.broken or false || lib.versionOlder ocaml.version "4.04"; 27 }; 28}