mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
rmw: init at 0.9.0
This commit is contained in:
parent
4a09826e9d
commit
d6e7f3fc7b
39
pkgs/tools/misc/rmw/default.nix
Normal file
39
pkgs/tools/misc/rmw/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user