My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/tools/filesystems/rdfind/default.nix

22 lines
554 B

{ stdenv, fetchurl, nettle }:
stdenv.mkDerivation rec {
name = "rdfind-${version}";
version = "1.4.1";
src = fetchurl {
url = "https://rdfind.pauldreik.se/${name}.tar.gz";
sha256 = "132y3wwgnbpdx6f90q0yahd3nkr4cjzcy815ilc8p97b4vn17iih";
};
buildInputs = [ nettle ];
meta = with stdenv.lib; {
homepage = https://rdfind.pauldreik.se/;
description = "Removes or hardlinks duplicate files very swiftly";
license = stdenv.lib.licenses.gpl2;
maintainers = [ maintainers.wmertens ];
platforms = platforms.all;
};
}