glyr: fix build (#450785)

This commit is contained in:
Leona Maroni
2025-10-11 16:58:15 +00:00
committed by GitHub
+15
View File
@@ -7,6 +7,7 @@
glib,
sqlite,
pkg-config,
fetchpatch,
}:
stdenv.mkDerivation rec {
@@ -20,6 +21,20 @@ stdenv.mkDerivation rec {
sha256 = "1miwbqzkhg0v3zysrwh60pj9sv6ci4lzq2vq2hhc6pc6hdyh8xyr";
};
patches = [
(fetchpatch {
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-libs/glyr/files/glyr-1.0.10-curl.patch?id=51addb56510c82d88ebac65d9ca4c8ca8e005693";
hash = "sha256-mRB0R04CWD+DFkjo5wfvFveUb98+gDAgxWTnrV0K1vk=";
})
];
# Compile with cmake >= 4.0
postPatch = ''
substituteInPlace CMakeLists.txt --replace-fail \
"CMAKE_MINIMUM_REQUIRED(VERSION 2.6)" \
"CMAKE_MINIMUM_REQUIRED(VERSION 3.10)"
'';
nativeBuildInputs = [
cmake
pkg-config