2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-04-15 14:47:54 +00:00

libzbc: 5.12.0 -> 5.13.0

This commit is contained in:
Alain Zscheile 2022-11-04 12:14:17 +01:00
parent ce910dae21
commit e54401a274

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 ];