nixpkgs/pkgs/tools/filesystems/rdfind/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
576 B
Nix
Raw Normal View History

2024-01-05 08:03:36 +00:00
{ lib, stdenv, fetchurl, nettle }:
stdenv.mkDerivation rec {
pname = "rdfind";
2024-01-05 08:03:36 +00:00
version = "1.6.0";
src = fetchurl {
url = "https://rdfind.pauldreik.se/${pname}-${version}.tar.gz";
2024-01-05 08:03:36 +00:00
sha256 = "sha256-ekBujvGIalhpZVYEYY3Zj2cvEsamvkkm0FO+ZQcPMnk=";
};
buildInputs = [ nettle ];
meta = with lib; {
homepage = "https://rdfind.pauldreik.se/";
description = "Removes or hardlinks duplicate files very swiftly";
2021-09-05 08:50:11 +00:00
license = licenses.gpl2Plus;
maintainers = [ maintainers.wmertens ];
platforms = platforms.all;
2023-11-23 21:09:35 +00:00
mainProgram = "rdfind";
};
}