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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
886 B
Nix
Raw Normal View History

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