summary refs log tree commit diff
path: root/pkgs/tools/system/nq/default.nix
blob: 59980566290d9b3844f63bdd82597ad830a32672 (plain) (blame)
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
{ stdenv, lib, fetchFromGitHub }:

stdenv.mkDerivation rec {
  name = "nq-${version}";
  version = "0.2.2";
  src = fetchFromGitHub {
    owner = "chneukirchen";
    repo = "nq";
    rev = "v${version}";
    sha256 = "0348r3j5y445psm8lj35z100cfvbfp05s7ji6bxd0gg4n66l2c4l";
  };
  makeFlags = "PREFIX=$(out)";
  postPatch = ''
    sed -i tq \
      -e 's|\bfq\b|'$out'/bin/fq|g' \
      -e 's|\bnq\b|'$out'/bin/nq|g'
  '';
  meta = with lib; {
    description = "Unix command line queue utility";
    homepage = https://github.com/chneukirchen/nq;
    license = licenses.publicDomain;
    platforms = platforms.linux;
    maintainers = with maintainers; [ cstrahan ];
  };
}