Merge pull request #278358 from MikaelFangel/update-libewf

libewf: 20201230 -> 20231119

authored by Robert Scott and committed by GitHub 49cd9dd5 ed29358e

+2 -10
+2 -10
pkgs/development/libraries/libewf/default.nix
··· 1 1 { fetchurl, fetchpatch, lib, stdenv, zlib, openssl, libuuid, pkg-config, bzip2 }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "20201230"; 4 + version = "20231119"; 5 5 pname = "libewf"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/libyal/libewf/releases/download/${version}/libewf-experimental-${version}.tar.gz"; 9 - hash = "sha256-10r4jPzsA30nHQzjdg/VkwTG1PwOskwv8Bra34ZPMgc="; 9 + hash = "sha256-7AjUEaXasOzJV9ErZK2a4HMTaqhcBbLKd8M+A5SbKrc="; 10 10 }; 11 - 12 - patches = [ 13 - # fix build with OpenSSL 3.0 14 - (fetchpatch { 15 - url = "https://github.com/libyal/libewf/commit/033ea5b4e5f8f1248f74a2ec61fc1be183c6c46b.patch"; 16 - hash = "sha256-R4+NO/91kiZP48SJyVF9oYjKCg1h/9Kh8/0VOEmJXPQ="; 17 - }) 18 - ]; 19 11 20 12 nativeBuildInputs = [ pkg-config ]; 21 13 buildInputs = [ zlib openssl libuuid ]