nixpkgs/pkgs/applications/misc/vit/default.nix
Matthias Beyer ce1c1e3093 Remove maintainership
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>
2018-04-06 10:57:19 +02:00

37 lines
907 B
Nix

{ pkgs, fetchgit, stdenv, makeWrapper, taskwarrior, ncurses,
perl, perlPackages }:
let
version = "1.2";
in
stdenv.mkDerivation {
name = "vit-${version}";
src = fetchgit {
url = "https://git.tasktools.org/scm/ex/vit.git";
rev = "7d0042ca30e9d09cfbf9743b3bc72096e4a8fe1e";
sha256 = "92cad7169b3870145dff02256e547ae270996a314b841d3daed392ac6722827f";
};
preConfigure = ''
substituteInPlace Makefile.in \
--replace sudo ""
substituteInPlace configure \
--replace /usr/bin/perl ${perl}/bin/perl
'';
postInstall = ''
wrapProgram $out/bin/vit --prefix PERL5LIB : $PERL5LIB
'';
buildInputs = [ taskwarrior ncurses perlPackages.Curses perl makeWrapper ];
meta = {
description = "Visual Interactive Taskwarrior";
maintainers = with pkgs.lib.maintainers; [ ];
platforms = pkgs.lib.platforms.linux;
license = pkgs.lib.licenses.gpl3;
};
}