2021-08-06 13:30:38 +02:00
|
|
|
# Import the Nixery repository as-is, but pass our own package set
|
|
|
|
# instead of the pin it has.
|
|
|
|
{ depot, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
2021-11-23 14:31:17 +01:00
|
|
|
inherit (depot.nix.readTree) drvTargets;
|
2021-08-06 13:30:38 +02:00
|
|
|
|
2021-08-25 15:50:31 +02:00
|
|
|
commit = "6c4a69fa4280f0154ce257a1dfd23fb463c1ec5b";
|
2021-08-06 13:30:38 +02:00
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "nixery";
|
|
|
|
rev = commit;
|
2021-08-25 15:50:31 +02:00
|
|
|
sha256 = "0g1v7020vjiqa3k07cfm3jzg3gc6nl3hs3vyw4c9s5v0dmmhhsz4";
|
2021-08-06 13:30:38 +02:00
|
|
|
};
|
|
|
|
in drvTargets (import src {
|
|
|
|
inherit pkgs;
|
|
|
|
commitHash = _: commit;
|
|
|
|
})
|