summaryrefslogtreecommitdiff
path: root/custom
diff options
context:
space:
mode:
Diffstat (limited to 'custom')
-rw-r--r--custom/redo-wrapper.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/custom/redo-wrapper.nix b/custom/redo-wrapper.nix
index 5b446636..3a3d7bbc 100644
--- a/custom/redo-wrapper.nix
+++ b/custom/redo-wrapper.nix
@@ -1,8 +1,8 @@
1{ stdenv, makeWrapper, haskellngPackages }: 1{ stdenv, makeWrapper, haskellPackages }:
2 2
3let 3let
4 #redo = haskellPackages.callPackage ./redo.nix {}; 4 #redo = haskellPackages.callPackage ./redo.nix {};
5 redo = stdenv.lib.overrideDerivation (haskellngPackages.redo) (attrs: { 5 redo = stdenv.lib.overrideDerivation (haskellPackages.redo) (attrs: {
6 patches = attrs.patches ++ [./redo.patch]; 6 patches = attrs.patches ++ [./redo.patch];
7 }); 7 });
8in stdenv.mkDerivation { 8in stdenv.mkDerivation {