[Backport release-24.11] vvenc: 1.12.0 -> 1.12.1 (#357354)

This commit is contained in:
jopejoe1 2024-11-20 14:53:00 +01:00 committed by GitHub
commit 067c0ff504
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,7 +9,7 @@
stdenv.mkDerivation (finalAttrs: {
pname = "vvenc";
version = "1.12.0";
version = "1.12.1";
outputs = [
"out"
@ -21,9 +21,16 @@ stdenv.mkDerivation (finalAttrs: {
owner = "fraunhoferhhi";
repo = "vvenc";
rev = "v${finalAttrs.version}";
hash = "sha256-C7ApayhubunkXBqJ/EqntaFPn6zk8rZ9fUqg7kbhvAk=";
hash = "sha256-Et/JmF/2hh6A1EsOzvgzruMN47rd5cPgRke3uPvz298=";
};
env.NIX_CFLAGS_COMPILE = toString (
lib.optionals stdenv.cc.isGNU [
"-Wno-maybe-uninitialized"
"-Wno-uninitialized"
]
);
nativeBuildInputs = [ cmake ];
cmakeFlags = [