commit
4e1f2d5507
2 changed files with 38 additions and 0 deletions
36
pkgs/applications/misc/vit/default.nix
Normal file
36
pkgs/applications/misc/vit/default.nix
Normal file
|
@ -0,0 +1,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; [ matthiasbeyer ];
|
||||||
|
platforms = pkgs.lib.platforms.linux;
|
||||||
|
license = pkgs.lib.licenses.gpl3;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -3271,6 +3271,8 @@ let
|
||||||
inherit (gnome3) gexiv2;
|
inherit (gnome3) gexiv2;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vit = callPackage ../applications/misc/vit { };
|
||||||
|
|
||||||
vnc2flv = callPackage ../tools/video/vnc2flv {};
|
vnc2flv = callPackage ../tools/video/vnc2flv {};
|
||||||
|
|
||||||
vncrec = builderDefsPackage (callPackage ../tools/video/vncrec) {};
|
vncrec = builderDefsPackage (callPackage ../tools/video/vncrec) {};
|
||||||
|
|
Loading…
Reference in a new issue