noice: init at 0.6

+33
+31
pkgs/applications/misc/noice/default.nix
···
··· 1 + { stdenv, fetchgit, ncurses, conf ? null }: 2 + 3 + with stdenv.lib; 4 + 5 + stdenv.mkDerivation rec { 6 + name = "noice-${version}"; 7 + version = "0.6"; 8 + 9 + src = fetchgit { 10 + url = "git://git.2f30.org/noice.git"; 11 + rev = "refs/tags/v${version}"; 12 + sha256 = "03rwglcy47fh6rb630vws10m95bxpcfv47nxrlws2li2ljam8prw"; 13 + }; 14 + 15 + configFile = optionalString (conf!=null) (builtins.toFile "config.def.h" conf); 16 + preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h"; 17 + 18 + buildInputs = [ ncurses ]; 19 + 20 + buildFlags = [ "LDLIBS=-lncurses" ]; 21 + 22 + installFlags = [ "DESTDIR=$(out)" "PREFIX=" ]; 23 + 24 + meta = { 25 + description = "Small ncurses-based file browser"; 26 + homepage = https://git.2f30.org/noice/; 27 + license = licenses.bsd2; 28 + platforms = platforms.all; 29 + maintainers = with maintainers; [ jfrankenau ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 3323 3324 ngrok = callPackage ../tools/networking/ngrok { }; 3325 3326 noip = callPackage ../tools/networking/noip { }; 3327 3328 nomad = callPackage ../applications/networking/cluster/nomad { };
··· 3323 3324 ngrok = callPackage ../tools/networking/ngrok { }; 3325 3326 + noice = callPackage ../applications/misc/noice { }; 3327 + 3328 noip = callPackage ../tools/networking/noip { }; 3329 3330 nomad = callPackage ../applications/networking/cluster/nomad { };