571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
43 lines
953 B
Nix
43 lines
953 B
Nix
{ lib, stdenv, fetchFromGitHub, python3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "9.2";
|
|
pname = "tab";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ivan-tkatchev";
|
|
repo = pname;
|
|
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;
|
|
};
|
|
}
|