40 lines
1.0 KiB
Nix
40 lines
1.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, makeWrapper
|
|
, trash-cli, coreutils, which, getopt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rmtrash";
|
|
version = "1.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PhrozenByte";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0wfb2ykzlsxyqn9krfsis9jxhaxy3pxl71a4f15an1ngfndai694";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|