nixpkgs-immich/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-09-17 10:23:40 -06:00
{ lib, stdenv, fetchurl, nettle }:
stdenv.mkDerivation rec {
pname = "rdfind";
version = "1.6.0";
src = fetchurl {
url = "https://rdfind.pauldreik.se/${pname}-${version}.tar.gz";
sha256 = "sha256-ekBujvGIalhpZVYEYY3Zj2cvEsamvkkm0FO+ZQcPMnk=";
};
buildInputs = [ nettle ];
meta = with lib; {
homepage = "https://rdfind.pauldreik.se/";
description = "Removes or hardlinks duplicate files very swiftly";
license = licenses.gpl2Plus;
maintainers = [ maintainers.wmertens ];
platforms = platforms.all;
mainProgram = "rdfind";
};
}