mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
224bc7dd4a
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - ran `/nix/store/gyphh3yyw7k1m0igds051f5rnkap5j8q-nq-0.3.1/bin/nq help` got 0 exit code - ran `/nix/store/gyphh3yyw7k1m0igds051f5rnkap5j8q-nq-0.3.1/bin/fq help` got 0 exit code - ran `/nix/store/gyphh3yyw7k1m0igds051f5rnkap5j8q-nq-0.3.1/bin/tq help` got 0 exit code - found 0.3.1 with grep in /nix/store/gyphh3yyw7k1m0igds051f5rnkap5j8q-nq-0.3.1 - directory tree listing: https://gist.github.com/572554e36b5b4ef6af9d80ebc5153935
26 lines
674 B
Nix
26 lines
674 B
Nix
{ stdenv, lib, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "nq-${version}";
|
|
version = "0.3.1";
|
|
src = fetchFromGitHub {
|
|
owner = "chneukirchen";
|
|
repo = "nq";
|
|
rev = "v${version}";
|
|
sha256 = "1db96ykz35r273jyhf7cdknqk4p2jj9l8gbz7pjy1hq4pb6ffk99";
|
|
};
|
|
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 ];
|
|
};
|
|
}
|