3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #199503 from zseri/libzbc-bump

libzbc: 5.12.0 -> 5.13.0
This commit is contained in:
Bobby Rong 2022-11-25 23:04:55 +08:00 committed by GitHub
commit 53eb7d7390
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,5 @@
{ lib
, stdenv
, autoconf-archive
, autoreconfHook
, fetchFromGitHub
, gtk3
@ -11,17 +10,16 @@
stdenv.mkDerivation rec {
pname = "libzbc";
version = "5.12.0";
version = "5.13.0";
src = fetchFromGitHub {
owner = "westerndigitalcorporation";
repo = "libzbc";
rev = "v${version}";
sha256 = "qI09dkMCwMym3j1ELrFDNbNB5hW/CzwmFmZhUNDXsfI=";
sha256 = "6xkA96bgQ2Ik1vEwkw7hwjMbjMSlopzv5ziTh60Mjx0=";
};
nativeBuildInputs = [
autoconf-archive # this can be removed with the next release
autoreconfHook
libtool
] ++ lib.optionals guiSupport [ pkg-config ];