Merge branch 'tv'
This commit is contained in:
commit
954f122d38
@ -12,6 +12,7 @@ pkgs //
|
||||
github-hosts-sync = callPackage ./github-hosts-sync.nix {};
|
||||
github-known_hosts = callPackage ./github-known_hosts.nix {};
|
||||
hashPassword = callPackage ./hashPassword.nix {};
|
||||
nq = callPackage ./nq.nix {};
|
||||
posix-array = callPackage ./posix-array.nix {};
|
||||
youtube-tools = callPackage ./youtube-tools.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
|
||||
tvpkgs.cac
|
||||
tvpkgs.dic
|
||||
tvpkgs.nq
|
||||
zathura
|
||||
|
||||
#ack
|
||||
|
@ -590,6 +590,7 @@ let
|
||||
throttle_count = 4;
|
||||
max_ratelimit_tokens = 30;
|
||||
away_interval = 30;
|
||||
disable_auth = yes;
|
||||
};
|
||||
|
||||
modules {
|
||||
|
Loading…
Reference in New Issue
Block a user