summary refs log tree commit diff
path: root/pkgs/applications/misc/vit/default.nix
blob: 40a399247e9050a12eea6ae1055c6374614500b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ 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.all;
    license = pkgs.lib.licenses.gpl3;
  };
}