biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / findup / default.nix
blobeaba884d79d9d7fa644f155c759cd5735b5bc653
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , testers
5 , zig_0_10
6 }:
8 stdenv.mkDerivation (finalAttrs: {
9   pname = "findup";
10   version = "1.1.1";
12   src = fetchFromGitHub {
13     owner = "booniepepper";
14     repo = "findup";
15     rev = "v${finalAttrs.version}";
16     hash = "sha256-Tpyiy5oJQ04lqVEOFshFC0+90VoNILQ+N6Dd7lbuH/Q=";
17   };
19   nativeBuildInputs = [ zig_0_10.hook ];
21   passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; };
23   meta = {
24     homepage = "https://github.com/booniepepper/findup";
25     description = "Search parent directories for sentinel files";
26     license = lib.licenses.mit;
27     maintainers = with lib.maintainers; [ booniepepper ];
28     mainProgram = "findup";
29   };