biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / rmw / default.nix
bloba6bbb40840297446bd5684b482b709b57927cde3
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , meson
5 , ninja
6 , pkg-config
7 , ncurses
8 }:
10 stdenv.mkDerivation rec {
11   pname = "rmw";
12   version = "0.9.1";
14   src = fetchFromGitHub {
15     owner = "theimpossibleastronaut";
16     repo = "rmw";
17     rev = "v${version}";
18     hash = "sha256-rfJdJHSkusZj/PN74KgV5i36YC0YRZmIfRdvkUNoKEM=";
19     fetchSubmodules = true;
20   };
22   nativeBuildInputs = [
23     pkg-config
24     meson
25     ninja
26   ];
28   buildInputs = [
29     ncurses
30   ];
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     mainProgram = "rmw";
39   };