File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff 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 { };
You can’t perform that action at this time.
0 commit comments