findup: 1.1.1 -> 1.1.2 (#365109)

This commit is contained in:
Weijia Wang 2024-12-17 00:03:23 +01:00 committed by GitHub
commit b29f7ed6cb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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; };