vvenc: 1.12.0 -> 1.12.1 (#357104)

This commit is contained in:
ajs124 2024-11-19 19:25:44 +01:00 committed by GitHub
commit 6e1436d0ad
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 = [