rdfind: 1.5.0 -> 1.6.0

Fixes build
This commit is contained in:
K900 2024-01-05 11:03:36 +03:00
parent 340cf4304d
commit d64c76c2ca

View File

@ -1,22 +1,14 @@
{ lib, stdenv, fetchpatch, fetchurl, nettle }:
{ lib, stdenv, fetchurl, nettle }:
stdenv.mkDerivation rec {
pname = "rdfind";
version = "1.5.0";
version = "1.6.0";
src = fetchurl {
url = "https://rdfind.pauldreik.se/${pname}-${version}.tar.gz";
sha256 = "103hfqzgr6izmj57fcy4jsa2nmb1ax43q4b5ij92pcgpaq9fsl21";
sha256 = "sha256-ekBujvGIalhpZVYEYY3Zj2cvEsamvkkm0FO+ZQcPMnk=";
};
patches = [
(fetchpatch {
name = "include-limits.patch";
url = "https://github.com/pauldreik/rdfind/commit/61877de88d782b63b17458a61fcc078391499b29.patch";
sha256 = "0igzm4833cn905pj84lgr88nd5gx35dnjl8kl8vrwk7bpyii6a8l";
})
];
buildInputs = [ nettle ];
meta = with lib; {