summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/push
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2017-05-24 01:43:50 +0200
committertv <tv@krebsco.de>2017-05-24 01:43:50 +0200
commitf0b98bd0114df1e1ebb82ff300f9532d86b3eb18 (patch)
tree58a39173f7d6d7caa10a7b8fec1b5a1e54f0c08c /krebs/5pkgs/push
parent46d6506916f699e3b707dc41cd68c92b98e50e5a (diff)
krebs/5pkgs: move simple pkgs to a subdir
Diffstat (limited to 'krebs/5pkgs/push')
-rw-r--r--krebs/5pkgs/push/default.nix49
1 files changed, 0 insertions, 49 deletions
diff --git a/krebs/5pkgs/push/default.nix b/krebs/5pkgs/push/default.nix
deleted file mode 100644
index 2e0291aa..00000000
--- a/krebs/5pkgs/push/default.nix
+++ /dev/null
@@ -1,49 +0,0 @@
-{ fetchgit, lib, stdenv
-, coreutils
-, git
-, gnumake
-, gnused
-, jq
-, nix
-, openssh
-, parallel
-, ... }:
-
-stdenv.mkDerivation {
- name = "push-1.1.2";
-
- src = fetchgit {
- url = http://cgit.ni.krebsco.de/push;
- rev = "da5b3a4b05ef822cc41d36b6cc2071a2e78506d4";
- sha256 = "0gfxz207lm11g77rw02jcqpvzhx07j9hzgjgscbmslzl5r8icd6g";
- };
-
- phases = [
- "unpackPhase"
- "installPhase"
- ];
-
- installPhase =
- let
- path = lib.makeBinPath [
- coreutils
- git
- gnumake
- gnused
- jq
- nix
- openssh
- parallel
- ];
- in
- ''
- mkdir -p $out/bin
-
- sed \
- '1s,.*,&\nPATH=${path},' \
- < ./push \
- > $out/bin/push
-
- chmod +x $out/bin/push
- '';
-}