31 lines
715 B
Nix
31 lines
715 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
testers,
|
|
zig_0_10,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "findup";
|
|
version = "1.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "booniepepper";
|
|
repo = "findup";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-Tpyiy5oJQ04lqVEOFshFC0+90VoNILQ+N6Dd7lbuH/Q=";
|
|
};
|
|
|
|
nativeBuildInputs = [ zig_0_10.hook ];
|
|
|
|
passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; };
|
|
|
|
meta = {
|
|
homepage = "https://github.com/booniepepper/findup";
|
|
description = "Search parent directories for sentinel files";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ booniepepper ];
|
|
mainProgram = "findup";
|
|
};
|
|
})
|