plutovg: 1.0.0 -> 1.1.0 (#408017)

This commit is contained in:
Peder Bergebakken Sundt 2025-06-05 19:36:34 +02:00 committed by GitHub
commit 31d29daefe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,15 +6,23 @@
}:
stdenv.mkDerivation (finalAttrs: {
pname = "plutovg";
version = "1.0.0";
version = "1.1.0";
src = fetchFromGitHub {
owner = "sammycage";
repo = "plutovg";
tag = "v${finalAttrs.version}";
hash = "sha256-xNWwACKGU5UIJviVZ3wU4GMuRxKn/rR8jBsZQpZiFZ8=";
hash = "sha256-989MA60nc1Tzp/4RzT0iYHz4JBJkU9zgEjEswa4vDpk=";
};
cmakeFlags = [
# the cmake package does not handle absolute CMAKE_INSTALL_INCLUDEDIR correctly
# (setting it to an absolute path causes include files to go to $out/$out/include,
# because the absolute path is interpreted with root at $out).
"-DCMAKE_INSTALL_INCLUDEDIR=include"
"-DCMAKE_INSTALL_LIBDIR=lib"
];
nativeBuildInputs = [
cmake
];