571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
38 lines
1.0 KiB
Nix
38 lines
1.0 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;
|
|
};
|
|
}
|