fdupes: 2.1.1 -> 2.1.2

main
Renaud 3 years ago committed by GitHub
parent 850c5e5d86
commit 3a97f34bdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      pkgs/tools/misc/fdupes/default.nix

@ -1,17 +1,17 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, ncurses, pcre2 }:
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, ncurses, pcre2 }:
stdenv.mkDerivation rec {
pname = "fdupes";
version = "2.1.1";
version = "2.1.2";
src = fetchFromGitHub {
owner = "adrianlopezroche";
repo = "fdupes";
rev = "v${version}";
sha256 = "1c5hv7vkfxsii1qafhsynzp9zkwim47xkpk27sy64qdsjnhysdak";
hash = "sha256-WtSuFWRqQo5D/FLwl3AaIIfg6q+09A3aP5//J4AUzus=";
};
nativeBuildInputs = [ autoreconfHook ];
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ ncurses pcre2 ];
meta = with lib; {

Loading…
Cancel
Save