forked from mirrors/nixpkgs
tab: init at 7.2
This commit is contained in:
parent
f8ef6e5f7d
commit
642bed5ba3
36
pkgs/tools/text/tab/default.nix
Normal file
36
pkgs/tools/text/tab/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue