summaryrefslogtreecommitdiff
path: root/shell-scripts.nix
diff options
context:
space:
mode:
Diffstat (limited to 'shell-scripts.nix')
-rw-r--r--shell-scripts.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/shell-scripts.nix b/shell-scripts.nix
deleted file mode 100644
index 3b849e0..0000000
--- a/shell-scripts.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- pkgs,
- config,
- ...
-}:
-with builtins; let
- script-names = attrNames (readDir ./shell-scripts);
- package = (
- filename:
- with pkgs; let
- in
- stdenv.mkDerivation {
- name = filename;
-
- buildCommand = ''
- install -Dm755 $script $out/bin/${filename}
- '';
-
- script = substituteAll {
- src = ./shell-scripts/${filename};
- isExecutable = true;
- inherit bash;
- home = config.home.homeDirectory;
- };
- }
- );
- packages = map package script-names;
-in
- packages