nixpkgs/pkgs/tools/misc/findup/default.nix
Sergei Trofimovich d3fdf4df0a findup: fix tests eval
Without the change `tests` eval fails as:

    $ nix build --no-link -f. findup.tests
    error:
       error: attribute 'findup' missing
2023-12-29 19:32:23 +00:00

31 lines
708 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";
};
})