at master 27 lines 560 B view raw
1{ 2 lib, 3 buildDunePackage, 4 opam, 5 opam-repository, 6 spdx_licenses, 7}: 8 9buildDunePackage { 10 pname = "opam-state"; 11 12 inherit (opam) src version; 13 14 # get rid of check for curl at configure time 15 # opam-state does not call curl at run time 16 configureFlags = [ "--disable-checks" ]; 17 18 propagatedBuildInputs = [ 19 opam-repository 20 spdx_licenses 21 ]; 22 23 meta = opam.meta // { 24 description = "OPAM development library handling the ~/.opam hierarchy, repository and switch states"; 25 maintainers = with lib.maintainers; [ sternenseemann ]; 26 }; 27}