findup: 1.1.1 -> 1.1.2

This commit is contained in:
Aaron Jheng
2024-12-14 12:44:03 +08:00
parent 0d34423bd5
commit 8726cf8a78
+10 -5
View File
@@ -3,21 +3,26 @@
stdenv,
fetchFromGitHub,
testers,
zig_0_10,
zig_0_11,
apple-sdk_11,
}:
let
zig = zig_0_11;
in
stdenv.mkDerivation (finalAttrs: {
pname = "findup";
version = "1.1.1";
version = "1.1.2";
src = fetchFromGitHub {
owner = "booniepepper";
repo = "findup";
rev = "v${finalAttrs.version}";
hash = "sha256-Tpyiy5oJQ04lqVEOFshFC0+90VoNILQ+N6Dd7lbuH/Q=";
hash = "sha256-EjfKNIYJBXjlKFNV4dJpOaXCfB5PUdeMjl4k1jFRfG0=";
};
nativeBuildInputs = [ zig_0_10.hook ];
nativeBuildInputs = [ zig.hook ];
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ];
passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; };