about summary refs log tree commit diff
path: root/users/Profpatsch/writers
diff options
context:
space:
mode:
Diffstat (limited to 'users/Profpatsch/writers')
-rw-r--r--users/Profpatsch/writers/default.nix14
-rw-r--r--users/Profpatsch/writers/tests/default.nix (renamed from users/Profpatsch/writers/tests.nix)19
2 files changed, 16 insertions, 17 deletions
diff --git a/users/Profpatsch/writers/default.nix b/users/Profpatsch/writers/default.nix
index 3888579a64..a71bed38ed 100644
--- a/users/Profpatsch/writers/default.nix
+++ b/users/Profpatsch/writers/default.nix
@@ -138,19 +138,6 @@ let
       ];
     in drvSeqL [ tests ] (crate false);
 
-
-  tests = import ./tests.nix {
-    inherit
-      depot
-      pkgs
-      python3
-      python3Lib
-      rustSimpleLib
-      rustSimple
-      testRustSimple
-      ;
-   };
-
 in {
   inherit
     python3
@@ -159,6 +146,5 @@ in {
     rustSimpleBin
     rustSimpleLib
     testRustSimple
-    tests
     ;
 }
diff --git a/users/Profpatsch/writers/tests.nix b/users/Profpatsch/writers/tests/default.nix
index 680c37a2ec..a16f5fa1f9 100644
--- a/users/Profpatsch/writers/tests.nix
+++ b/users/Profpatsch/writers/tests/default.nix
@@ -1,10 +1,23 @@
-{ depot, pkgs, python3, python3Lib, rustSimpleLib, rustSimple, testRustSimple }:
+{ depot, ... }:
 
 let
+  inherit (depot.users.Profpatsch.writers)
+    python3Lib
+    python3
+    testRustSimple
+    rustSimple
+    rustSimpleLib
+    rustSimpleBin
+    ;
+
+  inherit (depot.third_party)
+    coreutils
+    ;
+
   run = drv: depot.nix.runExecline.local "run-${drv.name}" {} [
     "if" [ drv ]
     "importas" "out" "out"
-    "${pkgs.coreutils}/bin/touch" "$out"
+    "${coreutils}/bin/touch" "$out"
   ];
 
   pythonTransitiveLib = python3Lib {
@@ -76,7 +89,7 @@ let
   '');
 
 
-in {
+in depot.nix.utils.drvTargets {
   inherit
     pythonWithLib
     rustTransitiveLib