Merge pull request #220112 from dit7ya/rmw

rmw: init at 0.9.0

authored by Ilan Joselevich and committed by GitHub c90c4025 d5c139a8

+41
+39
pkgs/tools/misc/rmw/default.nix
··· 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 + }
+2
pkgs/top-level/all-packages.nix
··· 11671 11671 inherit (python3Packages) sphinx; 11672 11672 }; 11673 11673 11674 + rmw = callPackage ../tools/misc/rmw { }; 11675 + 11674 11676 rng-tools = callPackage ../tools/security/rng-tools { }; 11675 11677 11676 11678 rnnoise = callPackage ../development/libraries/rnnoise { };