libde265: 1.0.10 -> 1.0.11

Changelog:
https://github.com/strukturag/libde265/releases/tag/v1.0.11
This commit is contained in:
Thomas Gerbet 2023-02-01 20:06:58 +01:00
parent bb9930984e
commit b39c23d283

View file

@ -1,7 +1,6 @@
{ lib { lib
, stdenv , stdenv
, fetchFromGitHub , fetchFromGitHub
, fetchpatch
, autoreconfHook , autoreconfHook
, pkg-config , pkg-config
@ -13,25 +12,16 @@
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "1.0.10"; version = "1.0.11";
pname = "libde265"; pname = "libde265";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "strukturag"; owner = "strukturag";
repo = "libde265"; repo = "libde265";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-d2TJKPvOAqLe+ZO1+Rd/yRIn3W1u1q62ZH20/9N2Shw="; sha256 = "sha256-0aRUh5h49fnjBjy42A5fWYHnhnQ4CFoeSIXZilZewW8=";
}; };
patches = [
(fetchpatch {
name = "revert-cmake-change-pkg-config.patch";
url = "https://github.com/strukturag/libde265/commit/388b61459c2abe2b949114ab54e83fb4dbfa8ba0.patch";
sha256 = "sha256-b6wwSvZpK7lIu0uD1SqK2zGBUjb/25+JW1Pf1fvHc0I=";
revert = true;
})
];
nativeBuildInputs = [ autoreconfHook pkg-config ]; nativeBuildInputs = [ autoreconfHook pkg-config ];
enableParallelBuilding = true; enableParallelBuilding = true;