1 { lib, stdenv, fetchFromGitHub, cmake, bison, flex }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 hash = "sha256-ZMUUa8CmpFNparPsM/P2yvRto9E85EdTxpID5sKQbNI=";
14 nativeBuildInputs = [ cmake bison flex ];
19 description = "CUE Sheet Parser Library";
21 libcue is intended to parse a so called cue sheet from a char string or
22 a file pointer. For handling of the parsed data a convenient API is
25 homepage = "https://github.com/lipnitsk/libcue";
26 license = licenses.gpl2Only;
27 maintainers = with maintainers; [ astsmtl ];
28 platforms = platforms.unix;