rmw: 0.9.1 -> 0.9.4

Changelog: https://github.com/theimpossibleastronaut/rmw/releases/tag/v0.9.4
This commit is contained in:
Lin Xianyi
2025-12-24 09:05:00 +08:00
parent c73ac94882
commit 277cfdb61b
+4 -7
View File
@@ -5,19 +5,20 @@
meson,
ninja,
pkg-config,
canfigger,
ncurses,
gettext,
}:
stdenv.mkDerivation rec {
pname = "rmw";
version = "0.9.1";
version = "0.9.4";
src = fetchFromGitHub {
owner = "theimpossibleastronaut";
repo = "rmw";
tag = "v${version}";
hash = "sha256-rfJdJHSkusZj/PN74KgV5i36YC0YRZmIfRdvkUNoKEM=";
hash = "sha256-/bE9fFjn3mPfUbtsB6bXfQAxUtbtuZiT4pevi5RCQA4=";
fetchSubmodules = true;
};
@@ -28,15 +29,11 @@ stdenv.mkDerivation rec {
];
buildInputs = [
canfigger
ncurses
]
++ lib.optional stdenv.hostPlatform.isDarwin gettext;
# The subproject "canfigger" has asan and ubsan enabled by default, disable it here
mesonFlags = [
"-Dcanfigger:b_sanitize=none"
];
meta = {
description = "Trashcan/ recycle bin utility for the command line";
homepage = "https://github.com/theimpossibleastronaut/rmw";