Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 9 lines 199 B view raw
1let 2 ides = builtins.fromJSON (builtins.readFile ./ides.json); 3in 4{ 5 callPackage, 6}: 7builtins.mapAttrs ( 8 _: info: callPackage ./build.nix (info // { mvnDeps = ./. + "/${info.mvnDeps}"; }) 9) ides