summaryrefslogtreecommitdiffstats
path: root/lass/1systems
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2021-10-24 20:34:17 +0200
committerlassulus <lassulus@lassul.us>2021-10-24 20:34:17 +0200
commitee50871bd10676e26b280084417bcbc9963ffe70 (patch)
tree81a5c5a9efcde35aa627d7b4debd82d79aca366f /lass/1systems
parent6ad567a18ed27b8c07bd79e045ac082f1dfe148e (diff)
l coaxmetal.r: force only git.ref
Diffstat (limited to 'lass/1systems')
-rw-r--r--lass/1systems/coaxmetal/source.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/lass/1systems/coaxmetal/source.nix b/lass/1systems/coaxmetal/source.nix
index 7f335ec0..abbf26c7 100644
--- a/lass/1systems/coaxmetal/source.nix
+++ b/lass/1systems/coaxmetal/source.nix
@@ -1,7 +1,7 @@
{ lib, pkgs, test, ... }: let
npkgs = lib.importJSON ../../../krebs/nixpkgs-unstable.json;
in {
- nixpkgs = lib.mkForce (if test then { derivation = let
+ nixpkgs = (if test then lib.mkForce ({ derivation = let
rev = npkgs.rev;
sha256 = npkgs.sha256;
in ''
@@ -15,7 +15,7 @@ in {
rev = "${rev}";
sha256 = "${sha256}";
}
- ''; } else {
- git.ref = npkgs.rev;
+ ''; }) else {
+ git.ref = lib.mkForce npkgs.rev;
});
}