about summary refs log tree commit diff
path: root/modules/user
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-03-21 18:13:26 +0100
committeraszlig <aszlig@redmoonstudios.org>2016-03-21 18:18:50 +0100
commit01be47adb11d48482a14df8b5a2580f2e5dfb4b5 (patch)
tree50afe4b2794b2d337072f970dbcc4f1d09879ab2 /modules/user
parent4ef7f659f10c03fef9d5c35b03060c2c26e0f981 (diff)
aszlig/profiles: Fix build of nix-repl
As of edolstra/nix-repl@8a2f5f0, this won't build with current
nixUnstable (version 1.12pre4509_69f28eb) and it already has been fixed
upstream (edolstra/nix-repl#25 and edolstra/nix-repl@ff8d069).

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'modules/user')
-rw-r--r--modules/user/aszlig/profiles/base.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/user/aszlig/profiles/base.nix b/modules/user/aszlig/profiles/base.nix
index 8f31467e..907831ab 100644
--- a/modules/user/aszlig/profiles/base.nix
+++ b/modules/user/aszlig/profiles/base.nix
@@ -85,6 +85,14 @@ in {
           checksumType = "mhash";
         };
         nix = pkgs.nixUnstable;
+        # XXX: As of edolstra/nix-repl@8a2f5f0, this won't build with
+        #      nixUnstable (version 1.12pre4509_69f28eb).
+        nix-repl = pkgs.nix-repl.overrideDerivation (drv: {
+          src = lib.overrideDerivation drv.src (lib.const {
+            rev = "e37bca136eb58cc156f88cc8aa8e7bf47ed31d42";
+            sha256 = "1myqffvhklqvab3plcy5xmg51fdfncj2wibchxw80pb13wq21r71";
+          });
+        });
         uqm = pkgs.uqm.override {
           use3DOVideos = true;
           useRemixPacks = true;