Skip to content

Commit d6e7f3f

Browse files
committed
rmw: init at 0.9.0
1 parent 4a09826 commit d6e7f3f

2 files changed

Lines changed: 41 additions & 0 deletions

File tree

pkgs/tools/misc/rmw/default.nix

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{ lib
2+
, stdenv
3+
, fetchFromGitHub
4+
, meson
5+
, ninja
6+
, pkg-config
7+
, ncurses
8+
}:
9+
10+
stdenv.mkDerivation rec {
11+
pname = "rmw";
12+
version = "0.9.0";
13+
14+
src = fetchFromGitHub {
15+
owner = "theimpossibleastronaut";
16+
repo = "rmw";
17+
rev = "v${version}";
18+
hash = "sha256-KOYj63j/vCG7I63bgep03HzufOj/p/EHaY8lyRMHCkY=";
19+
fetchSubmodules = true;
20+
};
21+
22+
nativeBuildInputs = [
23+
pkg-config
24+
meson
25+
ninja
26+
];
27+
28+
buildInputs = [
29+
ncurses
30+
];
31+
32+
meta = with lib; {
33+
description = "Trashcan/ recycle bin utility for the command line";
34+
homepage = "https://github.com/theimpossibleastronaut/rmw";
35+
changelog = "https://github.com/theimpossibleastronaut/rmw/blob/${src.rev}/ChangeLog";
36+
license = licenses.gpl3Only;
37+
maintainers = with maintainers; [ dit7ya ];
38+
};
39+
}

pkgs/top-level/all-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11665,6 +11665,8 @@ with pkgs;
1166511665
inherit (python3Packages) sphinx;
1166611666
};
1166711667

11668+
rmw = callPackage ../tools/misc/rmw { };
11669+
1166811670
rng-tools = callPackage ../tools/security/rng-tools { };
1166911671

1167011672
rnnoise = callPackage ../development/libraries/rnnoise { };

0 commit comments

Comments
 (0)