biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / has / default.nix
blob6fa84195a2f067ab3d2f07f2c8682690fc6c2a20
1 { lib, stdenvNoCC, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation (finalAttrs: rec {
4   pname = "has";
5   version = "1.5.0";
7   src = fetchFromGitHub {
8     owner = "kdabir";
9     repo = "has";
10     rev = "v${finalAttrs.version}";
11     hash = "sha256-TL8VwFx2tf+GkBwz0ILQg0pwcLJSTky57Wx9OW5+lS4=";
12   };
14   dontBuild = true;
16   installPhase = ''
17     runHook preInstall
18     install -Dm0555 ${pname} -t $out/bin
19     runHook postInstall
20   '';
22   meta = with lib; {
23     homepage = "https://github.com/kdabir/has";
24     description = "Checks presence of various command line tools and their versions on the path";
25     license = licenses.mit;
26     maintainers = with maintainers; [ Freed-Wu ];
27     platforms = platforms.unix;
28     mainProgram = "has";
29   };