stripe-cli: 1.23.3 -> 1.23.5 (#375724)
[NixPkgs.git] / pkgs / development / ocaml-modules / opam-repository / default.nix
blob61b9bc4133c12986b38008f63a10519110f82f4f
2   lib,
3   buildDunePackage,
4   opam-format,
5   curl,
6 }:
8 buildDunePackage {
9   pname = "opam-repository";
11   inherit (opam-format) src version;
13   patches = [ ./download-tool.patch ];
14   postPatch = ''
15     substituteInPlace src/repository/opamRepositoryConfig.ml \
16       --replace-fail "SUBSTITUTE_NIXOS_CURL_PATH" "\"${curl}/bin/curl\""
17   '';
19   propagatedBuildInputs = [ opam-format ];
21   configureFlags = [ "--disable-checks" ];
23   meta = opam-format.meta // {
24     description = "OPAM repository and remote sources handling, including curl/wget, rsync, git, mercurial, darcs backends";
25     maintainers = with lib.maintainers; [ sternenseemann ];
26   };