stu: 0.6.4 -> 0.6.5

This commit is contained in:
R. Ryantm 2024-11-22 12:59:47 +00:00 committed by Nick Cao
parent e404986b36
commit ac1dbe26e2
No known key found for this signature in database

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