From 32b8af8c826fb7be143e692d3f13b9572841d318 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Mon, 28 Nov 2022 18:28:51 +0100 Subject: pkgs/sternenseemann: remove everything shakti MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since shakti's k9 is no longer available for download, this is quite nonsensical to keep around. When it becomes available again, I'll be better off downloading it and saving it locally somewhere. Nixified shakti will just end up being garbage collected… The k-gpp idea wasn't bad, but not great either. --- pkgs/sternenseemann/scripts/default.nix | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) (limited to 'pkgs/sternenseemann/scripts/default.nix') diff --git a/pkgs/sternenseemann/scripts/default.nix b/pkgs/sternenseemann/scripts/default.nix index 010bd6cd..35e2cf70 100644 --- a/pkgs/sternenseemann/scripts/default.nix +++ b/pkgs/sternenseemann/scripts/default.nix @@ -5,7 +5,6 @@ , ghostscript , openssl , perl, mandoc -, shakti , gpp }: @@ -32,10 +31,7 @@ let /home/lukas/files/serverkram/minecraft/ ''; - bins = (getBins shakti [ "k-repl" ]) - // (getBins gpp [ "gpp" ]) - // (getBins perl [ "perl" ]) - // (getBins cryptsetup [ "cryptsetup" ]) + bins = (getBins cryptsetup [ "cryptsetup" ]) // (getBins borgbackup [ "borg" ]) // (getBins mandoc [ "man" ]) // (getBins openssl [ "openssl" ]) @@ -197,23 +193,4 @@ lib.fix (self: { printf '\a' fi ''; - - k-gpp = writeBashBin "k-gpp" '' - if [[ $# > 1 ]]; then - echo "$0: max one argument allowed" >&2 - exit 1 - fi - - if [[ ! -z "$1" ]]; then - preprocessed="$(mktemp --suffix=".k")" - echo "gpp $1 -o $preprocessed" >&2 - ${bins.gpp} "$1" -o "$preprocessed" - ${bins.k-repl} "$preprocessed" - status=$? - rm "$preprocessed" - exit $status - else - ${bins.k-repl} - fi - ''; }) -- cgit 1.4.1