about summary refs log tree commit diff
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2019-10-02 23:08:06 +0200
committeraszlig <aszlig@nix.build>2019-10-02 23:08:06 +0200
commit5716d0546978256fa3705f2059682f869a6a273a (patch)
tree4567692e4e6c9b8e6b1dae05a5a74c7523777428
parente9975c9a39cb4e654d9132de4b952f51174a0926 (diff)
pkgs/profpatsch: Fix eval error due to wrong path
Introduced in commit e9975c9a39cb4e654d9132de4b952f51174a0926.

The write-execline.nix file is inside the execline/ directory but the
import doesn't reflect that, so since there isn't any write-execline.nix
in other locations, I assume that this is what the author actually
intended.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @Profpatsch
-rw-r--r--pkgs/profpatsch/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/profpatsch/default.nix b/pkgs/profpatsch/default.nix
index eb1bf8fa..df9fce21 100644
--- a/pkgs/profpatsch/default.nix
+++ b/pkgs/profpatsch/default.nix
@@ -105,7 +105,7 @@ let
         testing.drvSeqL tests (itLocal name args execline);
     };
 
-  writeExeclineFns = import ./write-execline.nix {
+  writeExeclineFns = import ./execline/write-execline.nix {
     inherit pkgs execlineb-with-builtins;
   };