summary refs log tree commit diff
path: root/pkgs/applications/misc/tasknc
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2018-02-02 10:23:29 +0100
committerSilvan Mosberger <infinisil@icloud.com>2018-02-02 10:35:21 +0100
commitb7b4f7bdbd8351362c89ee3d4894f42651cbcd7a (patch)
tree3b8984671580d8c04d476f0332a43e3e327547b2 /pkgs/applications/misc/tasknc
parent65170e9404c4253b04a54ede419c5d99975344ee (diff)
downloadnixlib-b7b4f7bdbd8351362c89ee3d4894f42651cbcd7a.tar
nixlib-b7b4f7bdbd8351362c89ee3d4894f42651cbcd7a.tar.gz
nixlib-b7b4f7bdbd8351362c89ee3d4894f42651cbcd7a.tar.bz2
nixlib-b7b4f7bdbd8351362c89ee3d4894f42651cbcd7a.tar.lz
nixlib-b7b4f7bdbd8351362c89ee3d4894f42651cbcd7a.tar.xz
nixlib-b7b4f7bdbd8351362c89ee3d4894f42651cbcd7a.tar.zst
nixlib-b7b4f7bdbd8351362c89ee3d4894f42651cbcd7a.zip
tasknc: update (0.8 -> 2017-05-15), fix, cleanup and man pages
Diffstat (limited to 'pkgs/applications/misc/tasknc')
-rw-r--r--pkgs/applications/misc/tasknc/default.nix58
1 files changed, 26 insertions, 32 deletions
diff --git a/pkgs/applications/misc/tasknc/default.nix b/pkgs/applications/misc/tasknc/default.nix
index 1b3ca7dfc03c..0deda8ce35a3 100644
--- a/pkgs/applications/misc/tasknc/default.nix
+++ b/pkgs/applications/misc/tasknc/default.nix
@@ -1,48 +1,42 @@
-{ stdenv, fetchurl, taskwarrior, perl, ncurses }:
+{ stdenv, fetchFromGitHub, makeWrapper, perl, ncurses, taskwarrior }:
 
 stdenv.mkDerivation rec {
-  version = "0.8";
+  version = "2017-05-15";
   name = "tasknc-${version}";
 
-  src = fetchurl {
-    url = "https://github.com/mjheagle8/tasknc/archive/v${version}.tar.gz";
-    sha256 = "0max5schga9hmf3vfqk2ic91dr6raxglyyjcqchzla280kxn5c28";
+  src = fetchFromGitHub {
+    owner = "lharding";
+    repo = "tasknc";
+    rev = "c41d0240e9b848e432f01de735f28de93b934ae7";
+    sha256 = "0f7l7fy06p33vw6f6sjnjxfhw951664pmwhjl573jvmh6gi2h1yr";
   };
 
+  nativeBuildInputs = [
+    makeWrapper
+    perl # For generating the man pages with pod2man
+  ];
+
+  buildInputs = [ ncurses ];
+
   hardeningDisable = [ "format" ];
 
-  #
-  # I know this is ugly, but the Makefile does strange things in this package,
-  # so we have to:
-  #
-  #   1. Remove the "doc" task dependency from the "all" target
-  #   2. Remove the "tasknc.1" task dependency from the "install" target
-  #   3. Remove the installing of the tasknc.1 file from the install target as
-  #      we just removed the build target for it.
-  #
-  # TODO : One could also provide a patch for the doc/manual.pod file so it
-  # actually builds, but I'm not familiar with this, so this is the faster
-  # approach for me. We have no manpage, though.
-  #
-  preConfigure = ''
-    sed -i -r 's,(all)(.*)doc,\1\2,' Makefile
-    sed -i -r 's,(install)(.*)tasknc\.1,\1\2,' Makefile
-    sed -i -r 's,install\ -D\ -m644\ tasknc\.1\ (.*),,' Makefile
-  '';
+  buildFlags = [ "VERSION=${version}" ];
 
   installPhase = ''
-    mkdir $out/bin/ -p
-    mkdir $out/share/man1 -p
-    mkdir $out/share/tasknc -p
-    DESTDIR=$out PREFIX= MANPREFIX=share make install
+    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
   '';
 
-  buildInputs = [ taskwarrior perl ncurses ];
 
-  meta = {
-    homepage = https://github.com/mjheagle8/tasknc;
+  meta = with stdenv.lib; {
+    homepage = https://github.com/lharding/tasknc;
     description = "A ncurses wrapper around taskwarrior";
-    maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
-    platforms = stdenv.lib.platforms.linux; # Cannot test others
+    maintainers = with maintainers; [ matthiasbeyer infinisil ];
+    platforms = platforms.linux; # Cannot test others
   };
 }