biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / file-managers / noice / default.nix
blobd41c12faad8d1e40d681d9c5d47e1c67f828ea2e
1 { lib, stdenv, fetchgit, ncurses, conf ? null }:
3 with lib;
5 stdenv.mkDerivation rec {
6   pname = "noice";
7   version = "0.8";
9   src = fetchgit {
10     url = "git://git.2f30.org/noice.git";
11     rev = "refs/tags/v${version}";
12     sha256 = "0975j4m93s9a21pazwdzn4gqhkngwq7q6ghp0q8a75r6c4fb7aar";
13   };
15   postPatch = ''
16     # Add support for ncurses-6.3. Can be dropped with 0.9 release.
17     # Fixed upstream at: https://git.2f30.org/noice/commit/53c35e6b340b7c135038e00057a198f03cb7d7cf.html
18     substituteInPlace noice.c --replace 'printw(str);' 'printw("%s", str);'
19   '';
21   configFile = optionalString (conf!=null) (builtins.toFile "config.def.h" conf);
22   preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h";
24   buildInputs = [ ncurses ];
26   buildFlags = [ "LDLIBS=-lncurses" ];
28   installFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
30   meta = {
31     description = "Small ncurses-based file browser";
32     homepage = "https://git.2f30.org/noice/";
33     license = licenses.bsd2;
34     platforms = platforms.all;
35     maintainers = with maintainers; [ iogamaster ];
36     mainProgram = "noice";
37   };