mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
158e1cfdd0
And don't use square brackets on such lines.
22 lines
569 B
Nix
22 lines
569 B
Nix
{ stdenv, fetchurl, nettle }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "rdfind-${version}";
|
|
version = "1.3.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://rdfind.pauldreik.se/${name}.tar.gz";
|
|
sha256 = "0zfc5whh6j5xfbxr6wvznk62qs1mkd3r7jcq72wjgnck43vv7w55";
|
|
};
|
|
|
|
buildInputs = [ nettle ];
|
|
|
|
meta = {
|
|
homepage = http://rdfind.pauldreik.se/;
|
|
description = "Removes or hardlinks duplicate files very swiftly";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = with stdenv.lib.maintainers; [ wmertens ];
|
|
platforms = with stdenv.lib.platforms; all;
|
|
};
|
|
}
|