has: init at 1.4.0

+37
+6
maintainers/maintainer-list.nix
··· 4775 githubId = 7551358; 4776 name = "Frede Emil"; 4777 }; 4778 freezeboy = { 4779 email = "freezeboy@users.noreply.github.com"; 4780 github = "freezeboy";
··· 4775 githubId = 7551358; 4776 name = "Frede Emil"; 4777 }; 4778 + Freed-Wu = { 4779 + email = "wuzhenyu@ustc.edu"; 4780 + github = "Freed-Wu"; 4781 + githubId = 32936898; 4782 + name = "Wu Zhenyu"; 4783 + }; 4784 freezeboy = { 4785 email = "freezeboy@users.noreply.github.com"; 4786 github = "freezeboy";
+29
pkgs/applications/misc/has/default.nix
···
··· 1 + { lib, stdenvNoCC, fetchFromGitHub }: 2 + 3 + stdenvNoCC.mkDerivation (finalAttrs: rec { 4 + pname = "has"; 5 + version = "1.4.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "kdabir"; 9 + repo = "has"; 10 + rev = "v${finalAttrs.version}"; 11 + hash = "sha256-3XsNSl4lQfJjEPNGoFj6ABXGkwOUsg9AFDAz8euZApE="; 12 + }; 13 + 14 + dontBuild = true; 15 + 16 + installPhase = '' 17 + runHook preInstall 18 + install -Dm0555 ${pname} -t $out/bin 19 + runHook postInstall 20 + ''; 21 + 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 + }; 29 + })
+2
pkgs/top-level/all-packages.nix
··· 4294 4295 gti = callPackage ../tools/misc/gti { }; 4296 4297 hdate = callPackage ../applications/misc/hdate { }; 4298 4299 heatseeker = callPackage ../tools/misc/heatseeker { };
··· 4294 4295 gti = callPackage ../tools/misc/gti { }; 4296 4297 + has = callPackage ../applications/misc/has { }; 4298 + 4299 hdate = callPackage ../applications/misc/hdate { }; 4300 4301 heatseeker = callPackage ../tools/misc/heatseeker { };