about summary refs log tree commit diff
path: root/release.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-05-03 02:53:37 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-05-03 02:53:37 +0200
commit02ab7379c7a62f683b2f26fea82cd4e8a974268a (patch)
treed3281789e1b6ecda2543a27cc2114c879e1eb3ab /release.nix
parent5d7a807986c3ba9f61068c6edbd05c5d94c1f23a (diff)
release.nix: Fix import of <vuizvui/machines>
We factored away the system attribute from <vuizvui/machines> and it's
now a plain attrset. Unfortunately I forgot about the release.nix.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'release.nix')
-rw-r--r--release.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/release.nix b/release.nix
index f5723df6..5cb6556c 100644
--- a/release.nix
+++ b/release.nix
@@ -38,7 +38,7 @@ let
   root = import vuizvui { inherit system; };
 
   mpath = if vuizvuiSrc == null then ./machines else "${vuizvui}/machines";
-  allMachines = import mpath { inherit system; };
+  allMachines = import mpath;
 
   allTests = with import ./lib; getVuizvuiTests ({
     inherit system nixpkgs;