nixpkgs/pkgs/tools/misc/rmw/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
810 B
Nix
Raw Normal View History

2023-03-08 08:47:41 +01:00
{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, pkg-config
, ncurses
}:
stdenv.mkDerivation rec {
pname = "rmw";
2023-05-21 07:18:28 +02:00
version = "0.9.1";
2023-03-08 08:47:41 +01:00
src = fetchFromGitHub {
owner = "theimpossibleastronaut";
repo = "rmw";
rev = "v${version}";
2023-05-21 07:18:28 +02:00
hash = "sha256-rfJdJHSkusZj/PN74KgV5i36YC0YRZmIfRdvkUNoKEM=";
2023-03-08 08:47:41 +01:00
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 ];
2023-11-27 02:17:53 +01:00
mainProgram = "rmw";
2023-03-08 08:47:41 +01:00
};
}