My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/tools/text/tab/default.nix

41 lines
887 B

{ lib, stdenv, fetchFromBitbucket, python3 }:
5 years ago
stdenv.mkDerivation rec {
3 years ago
version = "8.0";
5 years ago
pname = "tab";
src = fetchFromBitbucket {
owner = "tkatchev";
repo = pname;
rev = version;
3 years ago
sha256 = "sha256-RcDvghTiqIdH79khwDIo8PhvmcObmix8WBrHToLwcw4=";
5 years ago
};
4 years ago
checkInputs = [ python3 ];
5 years ago
doCheck = !stdenv.isDarwin;
5 years ago
4 years ago
preCheck = ''
substituteInPlace Makefile --replace "python2 go2.py" "python go.py"
'';
5 years ago
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; {
5 years ago
description = "Programming language/shell calculator";
homepage = "https://tkatchev.bitbucket.io/tab/";
5 years ago
license = licenses.boost;
maintainers = with maintainers; [ mstarzyk ];
platforms = with platforms; unix;
5 years ago
};
}