2e6bf42a22
There ver very many conflicts, basically all due to name -> pname+version. Fortunately, almost everything was auto-resolved by kdiff3, and for now I just fixed up a couple evaluation problems, as verified by the tarball job. There might be some fallback to these conflicts, but I believe it should be minimal. Hydra nixpkgs: ?compare=1538299
37 lines
899 B
Nix
37 lines
899 B
Nix
{ stdenv, fetchFromGitHub, gawk, mercury, pandoc, ncurses, gpgme }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "notmuch-bower";
|
|
version = "0.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wangp";
|
|
repo = "bower";
|
|
rev = version;
|
|
sha256 = "0vhac8yjnhb1gz60jfzg27spyn96c1rr849gc6vjym5xamw7zp0v";
|
|
};
|
|
|
|
nativeBuildInputs = [ gawk mercury pandoc ];
|
|
|
|
buildInputs = [ ncurses gpgme ];
|
|
|
|
makeFlags = [ "PARALLEL=-j$(NIX_BUILD_CORES)" "bower" "man" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mv bower $out/bin/
|
|
mkdir -p $out/share/man/man1
|
|
mv bower.1 $out/share/man/man1/
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/wangp/bower;
|
|
description = "A curses terminal client for the Notmuch email system";
|
|
maintainers = with maintainers; [ erictapen ];
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|