nixpkgs/pkgs/by-name/ta/tab/package.nix

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

48 lines
953 B
Nix
Raw Normal View History

2022-03-19 11:13:57 +00:00
{
lib,
stdenv,
fetchFromGitHub,
python3,
}:
2019-09-02 20:31:50 +00:00
stdenv.mkDerivation rec {
2023-10-21 17:09:01 +00:00
version = "9.2";
2019-09-02 20:31:50 +00:00
pname = "tab";
2022-03-19 11:13:57 +00:00
src = fetchFromGitHub {
owner = "ivan-tkatchev";
2019-09-02 20:31:50 +00:00
repo = pname;
rev = version;
2023-10-21 17:09:01 +00:00
hash = "sha256-UOXfnpzYMKDdp8EeBo2HsVPGn61hkCqHe8olX9KAgOU=";
2019-09-02 20:31:50 +00:00
};
# gcc12; see https://github.com/ivan-tkatchev/tab/commit/673bdac998
postPatch = ''
sed '1i#include <cstring>' -i deps.h
'';
nativeCheckInputs = [ python3 ];
2019-09-02 20:31:50 +00:00
2020-06-19 09:21:00 +00:00
doCheck = !stdenv.hostPlatform.isDarwin;
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";
mainProgram = "tab";
homepage = "https://tab-lang.xyz";
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
};
}