mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
37 lines
781 B
Nix
37 lines
781 B
Nix
{ lib, stdenv, fetchFromGitHub, python3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "9.1";
|
|
pname = "tab";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ivan-tkatchev";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-AhgWeV/ojB8jM16A5ggrOD1YjWfRVcoQbkd3S2bgdyE=";
|
|
};
|
|
|
|
nativeCheckInputs = [ python3 ];
|
|
|
|
doCheck = !stdenv.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";
|
|
homepage = "http://tab-lang.xyz";
|
|
license = licenses.boost;
|
|
maintainers = with maintainers; [ mstarzyk ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|