22 lines
539 B
Nix
22 lines
539 B
Nix
{ lib, pkgs, test, ... }: let
|
|
npkgs = lib.importJSON ../../../krebs/nixpkgs-unstable.json;
|
|
in {
|
|
nixpkgs = lib.mkForce (if test then { derivation = let
|
|
rev = npkgs.rev;
|
|
sha256 = npkgs.sha256;
|
|
in ''
|
|
with import (builtins.fetchTarball {
|
|
url = "https://github.com/nixos/nixpkgs/archive/${rev}.tar.gz";
|
|
sha256 = "${sha256}";
|
|
}) {};
|
|
pkgs.fetchFromGitHub {
|
|
owner = "nixos";
|
|
repo = "nixpkgs";
|
|
rev = "${rev}";
|
|
sha256 = "${sha256}";
|
|
}
|
|
''; } else {
|
|
git.ref = npkgs.rev;
|
|
});
|
|
}
|