Merge pull request #261093 from LeSuisse/libcue-2.3.0

libcue: 2.2.1 -> 2.3.0

authored by Robert Scott and committed by GitHub b26e132e cacb6656

+4 -12
+4 -12
pkgs/development/libraries/libcue/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, cmake, bison, flex }: 2 3 stdenv.mkDerivation rec { 4 pname = "libcue"; 5 - version = "2.2.1"; 6 7 src = fetchFromGitHub { 8 owner = "lipnitsk"; 9 repo = "libcue"; 10 rev = "v${version}"; 11 - sha256 = "1iqw4n01rv2jyk9lksagyxj8ml0kcfwk67n79zy1r6zv1xfp5ywm"; 12 }; 13 14 - patches = [ 15 - (fetchpatch { 16 - name = "CVE-2023-43641.patch"; 17 - url = "https://github.com/lipnitsk/libcue/commit/fdf72c8bded8d24cfa0608b8e97f2eed210a920e.patch"; 18 - hash = "sha256-NjnSMUfman/SwLFWDIhtz2jCOLfpXGGGjO3QwRGURNg="; 19 - }) 20 - ]; 21 - 22 nativeBuildInputs = [ cmake bison flex ]; 23 24 - doCheck = false; # fails all the tests (ctest) 25 26 meta = with lib; { 27 description = "CUE Sheet Parser Library";
··· 1 + { lib, stdenv, fetchFromGitHub, cmake, bison, flex }: 2 3 stdenv.mkDerivation rec { 4 pname = "libcue"; 5 + version = "2.3.0"; 6 7 src = fetchFromGitHub { 8 owner = "lipnitsk"; 9 repo = "libcue"; 10 rev = "v${version}"; 11 + hash = "sha256-ZMUUa8CmpFNparPsM/P2yvRto9E85EdTxpID5sKQbNI="; 12 }; 13 14 nativeBuildInputs = [ cmake bison flex ]; 15 16 + doCheck = true; 17 18 meta = with lib; { 19 description = "CUE Sheet Parser Library";