summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/push/default.nix
blob: 410b434654a3e4433ce4078325c661d73e6744a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{ fetchgit, lib, stdenv
, coreutils
, get
, git
, gnused
, jq
, openssh
, parallel
, ... }:

stdenv.mkDerivation {
  name = "push-1.1.0";

  src = fetchgit {
    url = http://cgit.cd.retiolum/push;
    rev = "c5f4bda5bd00bad7778bbd5a9af8d476de0de920";
    sha256 = "d335b644b791214263cee5c6659538c8e45326531b0588e5e7eb3bd9ef969800";
  };

  phases = [
    "unpackPhase"
    "installPhase"
  ];

  installPhase =
    let
      path = lib.makeSearchPath "bin" [
        coreutils
        get
        git
        gnused
        jq
        openssh
        parallel
      ];
    in
    ''
      mkdir -p $out/bin

      sed \
        '1s,.*,&\nPATH=${path},' \
        < ./push \
        > $out/bin/push

      chmod +x $out/bin/push
    '';
}