nixpkgs/pkgs/tools/text/tab/default.nix

41 lines
887 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromBitbucket, python3 }:
2019-09-02 20:31:50 +00:00
stdenv.mkDerivation rec {
2021-03-09 22:55:17 +00:00
version = "8.0";
2019-09-02 20:31:50 +00:00
pname = "tab";
src = fetchFromBitbucket {
owner = "tkatchev";
repo = pname;
rev = version;
2021-03-09 22:55:17 +00:00
sha256 = "sha256-RcDvghTiqIdH79khwDIo8PhvmcObmix8WBrHToLwcw4=";
2019-09-02 20:31:50 +00:00
};
2020-06-19 09:20:00 +00:00
checkInputs = [ python3 ];
2019-09-02 20:31:50 +00:00
2020-06-19 09:21:00 +00:00
doCheck = !stdenv.isDarwin;
2019-09-02 20:31:50 +00:00
2020-06-19 09:20:00 +00:00
preCheck = ''
substituteInPlace Makefile --replace "python2 go2.py" "python go.py"
'';
2019-09-02 20:31:50 +00:00
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; {
2019-09-02 20:31:50 +00:00
description = "Programming language/shell calculator";
homepage = "https://tkatchev.bitbucket.io/tab/";
2019-09-02 20:31:50 +00:00
license = licenses.boost;
maintainers = with maintainers; [ mstarzyk ];
2020-06-19 09:21:00 +00:00
platforms = with platforms; unix;
2019-09-02 20:31:50 +00:00
};
}