about summary refs log tree commit diff
path: root/users/Profpatsch/execline/default.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2023-01-07T13·53+0100
committerclbot <clbot@tvl.fyi>2023-01-07T14·28+0000
commit83fb27dfbc60075711eca1a3aace40915822b78b (patch)
treea00a28cfb0c2698024716566e22f56c13ee00f5e /users/Profpatsch/execline/default.nix
parent1e2c859840f1d73ccf8a956647a15c0436f4bdd0 (diff)
chore(users/Profpatsch): move rust exec-helpers to own subdir r/5624
This is so we can use the rust language server for the file.

Change-Id: I8a2fe15ea67fd0e26814fda57bf0cace0d264cae
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7792
Autosubmit: Profpatsch <mail@profpatsch.de>
Reviewed-by: Profpatsch <mail@profpatsch.de>
Tested-by: BuildkiteCI
Diffstat (limited to 'users/Profpatsch/execline/default.nix')
-rw-r--r--users/Profpatsch/execline/default.nix7
1 files changed, 0 insertions, 7 deletions
diff --git a/users/Profpatsch/execline/default.nix b/users/Profpatsch/execline/default.nix
index 9b8856a9a84a..47c7f8b74971 100644
--- a/users/Profpatsch/execline/default.nix
+++ b/users/Profpatsch/execline/default.nix
@@ -1,12 +1,6 @@
 { depot, pkgs, lib, ... }:
 
 let
-  exec-helpers = depot.nix.writers.rustSimpleLib
-    {
-      name = "exec-helpers";
-    }
-    (builtins.readFile ./exec_helpers.rs);
-
   exec-helpers-hs = pkgs.haskellPackages.mkDerivation {
     pname = "exec-helpers";
     version = "0.1.0";
@@ -48,7 +42,6 @@ let
 in
 depot.nix.readTree.drvTargets {
   inherit
-    exec-helpers
     exec-helpers-hs
     print-one-env
     ;