mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
41 lines
887 B
Nix
41 lines
887 B
Nix
{ lib, stdenv, fetchFromBitbucket, python3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "8.0";
|
|
pname = "tab";
|
|
|
|
src = fetchFromBitbucket {
|
|
owner = "tkatchev";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-RcDvghTiqIdH79khwDIo8PhvmcObmix8WBrHToLwcw4=";
|
|
};
|
|
|
|
checkInputs = [ python3 ];
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
preCheck = ''
|
|
substituteInPlace Makefile --replace "python2 go2.py" "python go.py"
|
|
'';
|
|
|
|
checkTarget = "test";
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm555 -t $out/bin tab
|
|
install -Dm444 -t $out/share/doc/tab docs/*.html
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Programming language/shell calculator";
|
|
homepage = "https://tkatchev.bitbucket.io/tab/";
|
|
license = licenses.boost;
|
|
maintainers = with maintainers; [ mstarzyk ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|