38 lines
1 KiB
Nix
38 lines
1 KiB
Nix
|
{ lib, stdenvNoCC, fetchFromGitHub, makeWrapper
|
||
|
, trash-cli, coreutils, which, getopt }:
|
||
|
|
||
|
stdenvNoCC.mkDerivation rec {
|
||
|
pname = "rmtrash";
|
||
|
version = "1.15";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "PhrozenByte";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
sha256 = "sha256-vCtIM6jAYfrAOopiTcb4M5GNtucVnK0XEEKbMq1Cbc4=";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
platforms = platforms.all;
|
||
|
};
|
||
|
}
|