about summary refs log tree commit diff
path: root/pkgs/profpatsch/testing
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2018-09-22 23:09:03 +0200
committerProfpatsch <mail@profpatsch.de>2018-09-22 23:16:15 +0200
commit0cfe277878425794df5804b71d828161f5a95b43 (patch)
treee8e64cf6039c5c98eb096a1d9fc6be01adbf0b81 /pkgs/profpatsch/testing
parent5dcf14e5cd3ac05767326522f64abdffbf26074e (diff)
pkgs.profpatsch: switch to different import scheme
Reference files in `bin` outputs for a derivation as an attribute set,
with renaming capabilities.
Diffstat (limited to 'pkgs/profpatsch/testing')
-rw-r--r--pkgs/profpatsch/testing/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/profpatsch/testing/default.nix b/pkgs/profpatsch/testing/default.nix
index 55a141d9..21f814e4 100644
--- a/pkgs/profpatsch/testing/default.nix
+++ b/pkgs/profpatsch/testing/default.nix
@@ -1,5 +1,5 @@
 { stdenv, runCommand, lib
-, runExecline, s6TouchCommand, s6EchoCommand }:
+, runExecline, bin }:
 
 let
 
@@ -13,7 +13,7 @@ let
 
   /* TODO DOCS */
   drvSeqL = drvDeps: drvOut: let
-    drvOutOutputs = drvOut.outputs or ["out"];
+  drvOutOutputs = drvOut.outputs or ["out"];
   in
     runCommand drvOut.name {
       # we inherit all attributes in order to replicate
@@ -76,10 +76,10 @@ let
   #         importas -i out out
   #         ifte
   #           # if $@ succeeds, $out is touched
-  #           { ${s6TouchCommand} $out }
+  #           { ${bin.s6-touch} $out }
   #           # otherwise we return the exit code
   #           { importas exit ?
-  #             ${s6EchoCommand} $exit }
+  #             ${bin.s6-echo} $exit }
   #           # condition
   #           $@
   #       '';