Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

libcue: 2.2.1 -> 2.3.0

https://github.com/lipnitsk/libcue/releases/tag/v2.3.0

+4 -12
+4 -12
pkgs/development/libraries/libcue/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, cmake, bison, flex }: 1 + { lib, stdenv, fetchFromGitHub, cmake, bison, flex }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libcue"; 5 - version = "2.2.1"; 5 + version = "2.3.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "lipnitsk"; 9 9 repo = "libcue"; 10 10 rev = "v${version}"; 11 - sha256 = "1iqw4n01rv2jyk9lksagyxj8ml0kcfwk67n79zy1r6zv1xfp5ywm"; 11 + hash = "sha256-ZMUUa8CmpFNparPsM/P2yvRto9E85EdTxpID5sKQbNI="; 12 12 }; 13 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 14 nativeBuildInputs = [ cmake bison flex ]; 23 15 24 - doCheck = false; # fails all the tests (ctest) 16 + doCheck = true; 25 17 26 18 meta = with lib; { 27 19 description = "CUE Sheet Parser Library";