summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/simple/netcup
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2026-02-11 22:13:33 +0100
committermakefu <github@syntax-fehler.de>2026-02-11 22:13:33 +0100
commit490e66008b3e2837589d0c60ecfb3358fbfb089d (patch)
treebea05b1e1c97dc2d74e5a871941381784e74cfba /krebs/5pkgs/simple/netcup
parentdce904dd1a33c8a2ca9f56b0f33f85f493eda499 (diff)
parent0122ded2137e568e771e753c0c3a17b1b20d9ca7 (diff)
Merge remote-tracking branch 'github/master'
Diffstat (limited to 'krebs/5pkgs/simple/netcup')
-rw-r--r--krebs/5pkgs/simple/netcup/default.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/krebs/5pkgs/simple/netcup/default.nix b/krebs/5pkgs/simple/netcup/default.nix
deleted file mode 100644
index 750e9cfa9..000000000
--- a/krebs/5pkgs/simple/netcup/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ coreutils, curl, fetchgit, gawk, gnugrep, gnused, jq, stdenv, stockholm, w3m, ... }:
-with stockholm.lib;
-
-let
- readJSON = path: fromJSON (readFile path);
- sed.escape = replaceStrings ["/"] ["\\/"]; # close enough
- PATH = makeBinPath [
- coreutils
- curl
- gawk
- gnugrep
- gnused
- jq
- w3m
- ];
-in
-stdenv.mkDerivation {
- name = "netcup-1.0.0";
- src = fetchgit {
- url = "http://cgit.ni.krebsco.de/netcup";
- rev = "refs/tags/v1.0.0";
- sha256 = "1rn7bncfhjw0bqjbvj38m7lks4nyf5qcvkj9dg0zr99ba6dylzx5";
- };
- phases = [ "unpackPhase" "patchPhase" "installPhase" ];
- patchPhase = ''
- path=${shell.escape (sed.escape PATH)}
- sed -i "1s/.*/&\nPATH=$path/" vcp
- '';
- installPhase = ''
- mkdir -p $out/bin
- cp vcp $out/bin
- '';
-}