2e0f2b4fb9
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rdfind/versions
22 lines
554 B
Nix
22 lines
554 B
Nix
{ 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;
|
|
};
|
|
}
|