1{
2 lib,
3 buildDunePackage,
4 opam-format,
5 curl,
6}:
7
8buildDunePackage {
9 pname = "opam-repository";
10
11 inherit (opam-format) src version;
12
13 propagatedBuildInputs = [ opam-format ];
14
15 configureFlags = [ "--disable-checks" ];
16
17 meta = opam-format.meta // {
18 description = "OPAM repository and remote sources handling, including curl/wget, rsync, git, mercurial, darcs backends";
19 maintainers = with lib.maintainers; [ sternenseemann ];
20 };
21}