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