nixpkgs/pkgs/by-name/ha/has/package.nix

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

31 lines
741 B
Nix
Raw Normal View History

2022-11-22 11:37:48 +00:00
{ lib, stdenvNoCC, fetchFromGitHub }:
stdenvNoCC.mkDerivation (finalAttrs: rec {
pname = "has";
2024-04-05 06:50:33 +00:00
version = "1.5.0";
2022-11-22 11:37:48 +00:00
src = fetchFromGitHub {
owner = "kdabir";
repo = "has";
rev = "v${finalAttrs.version}";
2024-04-05 06:50:33 +00:00
hash = "sha256-TL8VwFx2tf+GkBwz0ILQg0pwcLJSTky57Wx9OW5+lS4=";
2022-11-22 11:37:48 +00:00
};
dontBuild = true;
installPhase = ''
runHook preInstall
install -Dm0555 ${pname} -t $out/bin
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/kdabir/has";
description = "Checks presence of various command line tools and their versions on the path";
license = licenses.mit;
maintainers = with maintainers; [ Freed-Wu ];
platforms = platforms.unix;
2024-02-11 02:19:15 +00:00
mainProgram = "has";
2022-11-22 11:37:48 +00:00
};
})