From 5716d0546978256fa3705f2059682f869a6a273a Mon Sep 17 00:00:00 2001 From: aszlig Date: Wed, 2 Oct 2019 23:08:06 +0200 Subject: 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 Cc: @Profpatsch --- pkgs/profpatsch/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }; -- cgit 1.4.1