stu: 0.6.4 -> 0.6.5 (#358134)

This commit is contained in:
nixpkgs-merge-bot[bot]
2024-11-23 08:39:19 +00:00
committed by GitHub
+5 -14
View File
@@ -2,31 +2,22 @@
lib,
fetchFromGitHub,
rustPlatform,
stdenv,
darwin,
stu,
testers,
}:
let
version = "0.6.4";
in
rustPlatform.buildRustPackage {
rustPlatform.buildRustPackage rec {
pname = "stu";
inherit version;
version = "0.6.5";
src = fetchFromGitHub {
owner = "lusingander";
repo = "stu";
rev = "v${version}";
hash = "sha256-iLfUJXunQjS/dFB+sTtZRvsxHRMh5o6JYM3eCucEhQA=";
hash = "sha256-GqeKb3Fu0MkM98AGDOEuO3zbzSHOWQFiamCSgMk4xBI=";
};
cargoHash = "sha256-eja2wE822IckT9pj6TqqKh3NUyUox+VlhGb+lTvCW1Y=";
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.AppKit
darwin.apple_sdk.frameworks.CoreGraphics
];
cargoHash = "sha256-fK7eHNUKAE6FykHllnIe0vNEEzeykpqvnM29KBn4l2I=";
passthru.tests.version = testers.testVersion { package = stu; };