nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 33 lines 525 B view raw
1{ 2 lib, 3 buildDunePackage, 4 base64, 5 cmdliner, 6 opam, 7 opam-repository, 8 opam-solver, 9 opam-state, 10 re, 11}: 12 13buildDunePackage { 14 pname = "opam-client"; 15 16 inherit (opam) src version; 17 18 configureFlags = [ "--disable-checks" ]; 19 20 propagatedBuildInputs = [ 21 base64 22 cmdliner 23 opam-repository 24 opam-solver 25 opam-state 26 re 27 ]; 28 29 meta = opam.meta // { 30 description = "Actions on the opam root, switches, installations, and front-end"; 31 maintainers = with lib.maintainers; [ stepbrobd ]; 32 }; 33}