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-12-27 09:29:23 +01:00
|
|
|
commit = "601cd998077f77f257ad1a40fa488add8464650f";
|
2021-08-06 13:30:38 +02:00
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "nixery";
|
|
|
|
rev = commit;
|
2021-12-27 09:29:23 +01:00
|
|
|
sha256 = "195rz25y3hfxcmniysajzjg7g69qhz7w06lql8fn0dbcdcxsq6g4";
|
2021-08-06 13:30:38 +02:00
|
|
|
};
|
|
|
|
in
|
|
|
|
drvTargets (import src {
|
|
|
|
inherit pkgs;
|
|
|
|
commitHash = _: commit;
|
|
|
|
})
|