Commit cfe10a28 authored by e1mo's avatar e1mo Committed by Bjørn Forsman
Browse files

fdupes: 2.2.1 -> 2.3.0

 > Changes from 2.2.1 to 2.3.0:
 >
 > - Add --cache option to speed up file comparisons.
 > - Use nanosecond precision for file times, if available.
 > - Fix compilation issue on OpenBSD.
 > - Other changes like fixing typos, wording, etc.

Changelog: https://github.com/adrianlopezroche/fdupes/releases/tag/v2.3.0
parent 15639ed0
Loading
Loading
Loading
Loading
+22 −7
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, ncurses, pcre2 }:
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, pkg-config
, ncurses
, pcre2
, sqlite
}:

stdenv.mkDerivation rec {
  pname = "fdupes";
  version = "2.2.1";
  version = "2.3.0";

  src = fetchFromGitHub {
    owner = "adrianlopezroche";
    repo = "fdupes";
    rev = "v${version}";
    hash  = "sha256-8GYQfnUxS790pDXw2sjnDZNB55PMDaCcO6daIa/MPMw=";
    hash = "sha256-BW6a5vKRAuXs/zWPHhtZs6Y4scyCEfqHEAkGUSUiwkI=";
  };

  nativeBuildInputs = [ autoreconfHook pkg-config ];
  buildInputs = [ ncurses pcre2 ];
  nativeBuildInputs = [
    autoreconfHook
    pkg-config
  ];
  buildInputs = [
    ncurses
    pcre2
    sqlite
  ];

  meta = with lib; {
    description = "Identifies duplicate files residing within specified directories";