rmtrash: init at 1.13

gstqt5
peelz 2020-03-21 03:07:36 -04:00 committed by Jon
parent e9642f2507
commit c79b04a9a5
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,39 @@
{ lib, stdenv, fetchFromGitHub, makeWrapper
, trash-cli, coreutils, which, getopt }:
stdenv.mkDerivation rec {
pname = "rmtrash";
version = "1.13";
src = fetchFromGitHub {
owner = "PhrozenByte";
repo = pname;
rev = "v${version}";
sha256 = "04a9c65wnkq1fj8qhdsdbps88xjbp7rn6p27y25v47kaysvrw01j";
};
dontConfigure = true;
dontBuild = true;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
for f in rm{,dir}trash; do
install -D ./$f $out/bin/$f
wrapProgram $out/bin/$f \
--prefix PATH : ${lib.makeBinPath [ trash-cli coreutils which getopt ]}
done
'';
meta = with lib; {
homepage = "https://github.com/PhrozenByte/rmtrash";
description = "trash-put made compatible with GNUs rm and rmdir";
longDescription = ''
Put files (and directories) in trash using the `trash-put` command in a
way that is, otherwise as `trash-put` itself, compatible to GNUs `rm`
and `rmdir`.
'';
license = licenses.gpl3Plus;
maintainers = with maintainers; [ peelz ];
};
}

View File

@ -6369,6 +6369,8 @@ in
rlwrap = callPackage ../tools/misc/rlwrap { };
rmtrash = callPackage ../tools/misc/rmtrash { };
rockbox_utility = libsForQt5.callPackage ../tools/misc/rockbox-utility { };
rosegarden = libsForQt5.callPackage ../applications/audio/rosegarden { };