2015-02-14 22:01:54 +00:00
|
|
|
{ stdenv, fetchurl, nettle }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "rdfind";
|
2018-11-18 08:47:21 +00:00
|
|
|
version = "1.4.1";
|
2015-02-14 22:01:54 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://rdfind.pauldreik.se/${pname}-${version}.tar.gz";
|
2018-11-18 08:47:21 +00:00
|
|
|
sha256 = "132y3wwgnbpdx6f90q0yahd3nkr4cjzcy815ilc8p97b4vn17iih";
|
2015-02-14 22:01:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ nettle ];
|
|
|
|
|
2017-11-01 14:31:51 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://rdfind.pauldreik.se/";
|
2015-02-14 22:01:54 +00:00
|
|
|
description = "Removes or hardlinks duplicate files very swiftly";
|
2015-05-28 17:20:29 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2017-11-01 14:31:51 +00:00
|
|
|
maintainers = [ maintainers.wmertens ];
|
|
|
|
platforms = platforms.all;
|
2015-02-14 22:01:54 +00:00
|
|
|
};
|
|
|
|
}
|