3
0
Fork 0
forked from mirrors/nixpkgs

tab: init at 7.2

This commit is contained in:
Maciek Starzyk 2019-09-02 22:31:50 +02:00 committed by Jon
parent f8ef6e5f7d
commit 642bed5ba3
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ stdenv, fetchFromBitbucket, python2 }:
stdenv.mkDerivation rec {
version = "7.2";
pname = "tab";
src = fetchFromBitbucket {
owner = "tkatchev";
repo = pname;
rev = version;
sha256 = "1bm15lw0vp901dj2vsqx6yixmn7ls3brrzh1w6zgd1ksjzlm5aax";
};
nativeBuildInputs = [ python2 ];
doCheck = true;
checkTarget = "test";
installPhase = ''
runHook preInstall
install -Dm555 -t $out/bin tab
install -Dm444 -t $out/share/doc/tab docs/*.html
runHook postInstall
'';
meta = with stdenv.lib; {
description = "Programming language/shell calculator";
homepage = https://tkatchev.bitbucket.io/tab/;
license = licenses.boost;
maintainers = with maintainers; [ mstarzyk ];
platforms = with platforms; linux;
};
}

View file

@ -5589,6 +5589,8 @@ in
plex = callPackage ../servers/plex { };
plexRaw = callPackage ../servers/plex/raw.nix { };
tab = callPackage ../tools/text/tab { };
tautulli = callPackage ../servers/tautulli { python = python2; };
ploticus = callPackage ../tools/graphics/ploticus {