Unverified Commit d6e7f3fc authored by Mostly Void's avatar Mostly Void
Browse files

rmw: init at 0.9.0

parent 4a09826e
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, pkg-config
, ncurses
}:

stdenv.mkDerivation rec {
  pname = "rmw";
  version = "0.9.0";

  src = fetchFromGitHub {
    owner = "theimpossibleastronaut";
    repo = "rmw";
    rev = "v${version}";
    hash = "sha256-KOYj63j/vCG7I63bgep03HzufOj/p/EHaY8lyRMHCkY=";
    fetchSubmodules = true;
  };

  nativeBuildInputs = [
    pkg-config
    meson
    ninja
  ];

  buildInputs = [
    ncurses
  ];

  meta = with lib; {
    description = "Trashcan/ recycle bin utility for the command line";
    homepage = "https://github.com/theimpossibleastronaut/rmw";
    changelog = "https://github.com/theimpossibleastronaut/rmw/blob/${src.rev}/ChangeLog";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ dit7ya ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -11665,6 +11665,8 @@ with pkgs;
    inherit (python3Packages) sphinx;
  };
  rmw = callPackage ../tools/misc/rmw { };
  rng-tools = callPackage ../tools/security/rng-tools { };
  rnnoise = callPackage ../development/libraries/rnnoise { };