Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 16 lines 556 B view raw
1{ lib, newScope }: 2 3lib.makeScope newScope ( 4 self: 5 let 6 inherit (self) callPackage; 7 in 8 { 9 hare-compress = callPackage ../development/hare-third-party/hare-compress { }; 10 hare-ev = callPackage ../development/hare-third-party/hare-ev { }; 11 hare-json = callPackage ../development/hare-third-party/hare-json { }; 12 hare-ssh = callPackage ../development/hare-third-party/hare-ssh { }; 13 hare-toml = callPackage ../development/hare-third-party/hare-toml { }; 14 hare-png = callPackage ../development/hare-third-party/hare-png { }; 15 } 16)