ce1c1e3093
With this patch I remove myself as a maintainer for all packages I currently maintain. This is due the fact that I will be basically off the grid from May 2018 until early 2019, as I will be on a trip through north america. I will revert this patch as soon as I'm back, as I plan to continue contributing to nixpkgs then. But as I cannot maintain anything during that time, I'd like to get this patch merged. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
43 lines
1.0 KiB
Nix
43 lines
1.0 KiB
Nix
{ stdenv, fetchFromGitHub, makeWrapper, perl, ncurses, taskwarrior }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2017-05-15";
|
|
name = "tasknc-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lharding";
|
|
repo = "tasknc";
|
|
rev = "c41d0240e9b848e432f01de735f28de93b934ae7";
|
|
sha256 = "0f7l7fy06p33vw6f6sjnjxfhw951664pmwhjl573jvmh6gi2h1yr";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
perl # For generating the man pages with pod2man
|
|
];
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
buildFlags = [ "VERSION=${version}" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin/
|
|
mkdir -p $out/share/man/man1
|
|
mkdir -p $out/share/tasknc
|
|
|
|
DESTDIR=$out PREFIX= MANPREFIX=/share/man make install
|
|
|
|
wrapProgram $out/bin/tasknc --prefix PATH : ${taskwarrior}/bin
|
|
'';
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/lharding/tasknc;
|
|
description = "A ncurses wrapper around taskwarrior";
|
|
maintainers = with maintainers; [ infinisil ];
|
|
platforms = platforms.linux; # Cannot test others
|
|
};
|
|
}
|