tracexec: 0.4.0 -> 0.5.1

This commit is contained in:
Franz Pletz 2024-07-21 12:28:42 +02:00
parent db5bef926b
commit 94f50c95a1
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -8,7 +8,7 @@
}:
let
pname = "tracexec";
version = "0.4.0";
version = "0.5.1";
in
rustPlatform.buildRustPackage {
inherit pname version;
@ -17,14 +17,12 @@ rustPlatform.buildRustPackage {
owner = "kxxt";
repo = "tracexec";
rev = "refs/tags/v${version}";
hash = "sha256-Rhxg3VmdMSo1xlazvToIdvkBvuFUKTq82U3PnedGHHs=";
hash = "sha256-RDOVKcGzSbej8THJGJgdLo/RPoD4Eks6USifXvd5PvY=";
};
cargoHash = "sha256-rioZfUJD4ZOpXGCWsBDQkYwW9XtTjFnGgMKl0mPF5XM=";
cargoHash = "sha256-ELNksIEwGvcZ5grrmK4Nyvkyw2bkEdNQ2q4RSy4VqdM=";
nativeBuildInputs = [
cargo-about
];
nativeBuildInputs = [ cargo-about ];
# Remove RiscV64 specialisation when this is fixed:
# * https://github.com/NixOS/nixpkgs/pull/310158#pullrequestreview-2046944158
@ -62,7 +60,10 @@ rustPlatform.buildRustPackage {
homepage = "https://github.com/kxxt/tracexec";
license = lib.licenses.gpl2Plus;
mainProgram = "tracexec";
maintainers = with lib.maintainers; [ fpletz nh2 ];
maintainers = with lib.maintainers; [
fpletz
nh2
];
platforms = lib.platforms.linux;
};
}