nixpkgs/pkgs/tools/misc/findup/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
945 B
Nix
Raw Normal View History

2022-01-13 09:18:09 +00:00
{ lib, stdenv, fetchFromGitHub, zig, testers, findup }:
stdenv.mkDerivation rec {
pname = "findup";
version = "1.0";
src = fetchFromGitHub {
owner = "hiljusti";
repo = pname;
rev = "v${version}";
sha256 = "sha256-erlKIiYYlWnhoeD3FnKdxnHjfGmmJVXk44DUja5Unig=";
};
nativeBuildInputs = [ zig ];
# Builds and installs (at the same time) with Zig.
dontConfigure = true;
dontBuild = true;
# Give Zig a directory for intermediate work.
preInstall = ''
export HOME=$TMPDIR
'';
installPhase = ''
runHook preInstall
zig build -Drelease-safe -Dcpu=baseline --prefix $out
runHook postInstall
'';
passthru.tests.version = testers.testVersion { package = findup; };
meta = with lib; {
homepage = "https://github.com/hiljusti/findup";
description = "Search parent directories for sentinel files";
license = licenses.mit;
maintainers = with maintainers; [ hiljusti ];
};
}