depot/third_party/nixpkgs/pkgs/development/ocaml-modules/opam-repository/default.nix
Default email 1ffc76754d Project import generated by Copybara.
GitOrigin-RevId: a5cc7d3197705f933d88e97c0c61849219ce76c1
2020-07-18 18:06:22 +02:00

24 lines
698 B
Nix

{ lib, buildDunePackage, unzip, opam-format, curl }:
buildDunePackage rec {
pname = "opam-repository";
minimumOCamlVersion = "4.02";
inherit (opam-format) src version;
patches = [ ./download-tool.patch ];
postPatch = ''
substituteInPlace src/repository/opamRepositoryConfig.ml \
--replace "SUBSTITUTE_NIXOS_CURL_PATH" "\"${curl}/bin/curl\""
'';
nativeBuildInputs = [ unzip ];
buildInputs = [ curl ];
propagatedBuildInputs = [ opam-format ];
meta = opam-format.meta // {
description = "OPAM repository and remote sources handling, including curl/wget, rsync, git, mercurial, darcs backends";
maintainers = with lib.maintainers; [ sternenseemann ];
};
}