Files
nixpkgs/pkgs/by-name/ta/tab/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

48 lines
953 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
python3,
}:
stdenv.mkDerivation rec {
version = "9.2";
pname = "tab";
src = fetchFromGitHub {
owner = "ivan-tkatchev";
repo = "tab";
rev = version;
hash = "sha256-UOXfnpzYMKDdp8EeBo2HsVPGn61hkCqHe8olX9KAgOU=";
};
# gcc12; see https://github.com/ivan-tkatchev/tab/commit/673bdac998
postPatch = ''
sed '1i#include <cstring>' -i deps.h
'';
nativeCheckInputs = [ python3 ];
doCheck = !stdenv.hostPlatform.isDarwin;
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";
mainProgram = "tab";
homepage = "https://tab-lang.xyz";
license = licenses.boost;
maintainers = with maintainers; [ mstarzyk ];
platforms = with platforms; unix;
};
}