krebs pkgs nq: init at 0eae839cb1
This commit is contained in:
parent
c73b2f6c17
commit
e8da585cfa
@ -12,5 +12,6 @@ pkgs //
|
|||||||
github-hosts-sync = callPackage ./github-hosts-sync.nix {};
|
github-hosts-sync = callPackage ./github-hosts-sync.nix {};
|
||||||
github-known_hosts = callPackage ./github-known_hosts.nix {};
|
github-known_hosts = callPackage ./github-known_hosts.nix {};
|
||||||
hashPassword = callPackage ./hashPassword.nix {};
|
hashPassword = callPackage ./hashPassword.nix {};
|
||||||
|
nq = callPackage ./nq.nix {};
|
||||||
posix-array = callPackage ./posix-array.nix {};
|
posix-array = callPackage ./posix-array.nix {};
|
||||||
}
|
}
|
||||||
|
16
krebs/5pkgs/nq.nix
Normal file
16
krebs/5pkgs/nq.nix
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{ fetchgit, stdenv }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "nq-${rev}";
|
||||||
|
rev = "0eae839cb1";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = https://github.com/chneukirchen/nq;
|
||||||
|
inherit rev;
|
||||||
|
sha256 = "1150274750cde934932d65bd6053d7a0ba2404a59eadfb87fc6bd8a4fb70febb";
|
||||||
|
};
|
||||||
|
|
||||||
|
configurePhase = ''
|
||||||
|
sed -i "s:^PREFIX=.*:PREFIX=$out:" Makefile
|
||||||
|
'';
|
||||||
|
}
|
@ -92,6 +92,7 @@ in
|
|||||||
tmux
|
tmux
|
||||||
tvpkgs.cac
|
tvpkgs.cac
|
||||||
tvpkgs.dic
|
tvpkgs.dic
|
||||||
|
tvpkgs.nq
|
||||||
zathura
|
zathura
|
||||||
|
|
||||||
#ack
|
#ack
|
||||||
|
Loading…
Reference in New Issue
Block a user