sqlite_orm: 1.9 -> 1.9.1 (#379250)
[NixPkgs.git] / pkgs / by-name / rm / rmw / package.nix
blobf405ef621d921b617afd3fede0667bd1cb1c7c9d
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   meson,
6   ninja,
7   pkg-config,
8   ncurses,
9 }:
11 stdenv.mkDerivation rec {
12   pname = "rmw";
13   version = "0.9.1";
15   src = fetchFromGitHub {
16     owner = "theimpossibleastronaut";
17     repo = "rmw";
18     rev = "v${version}";
19     hash = "sha256-rfJdJHSkusZj/PN74KgV5i36YC0YRZmIfRdvkUNoKEM=";
20     fetchSubmodules = true;
21   };
23   nativeBuildInputs = [
24     pkg-config
25     meson
26     ninja
27   ];
29   buildInputs = [
30     ncurses
31   ];
33   meta = with lib; {
34     description = "Trashcan/ recycle bin utility for the command line";
35     homepage = "https://github.com/theimpossibleastronaut/rmw";
36     changelog = "https://github.com/theimpossibleastronaut/rmw/blob/${src.rev}/ChangeLog";
37     license = licenses.gpl3Only;
38     maintainers = with maintainers; [ dit7ya ];
39     mainProgram = "rmw";
40   };