libcue: 1.4.0 -> 2.1.0
This commit is contained in:
parent
a637b4d950
commit
e50be9ff75
@ -1,12 +1,19 @@
|
|||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchFromGitHub, cmake, bison, flex }:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libcue-1.4.0";
|
name = "libcue-${version}";
|
||||||
src = fetchurl {
|
version = "2.1.0";
|
||||||
url = "mirror://sourceforge/libcue/${name}.tar.bz2";
|
|
||||||
sha256 = "17kjd7rjz1bvfn44n3n2bjb7a1ywd0yc0g4sqp5ihf9b5bn7cwlb";
|
src = fetchFromGitHub {
|
||||||
|
owner = "lipnitsk";
|
||||||
|
repo = "libcue";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "14a84d6sq3yp8s8i05lxvifjpkgpjwfpchrqf3bbpbwa8gvrc0rj";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake bison flex ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A library to parse a cue sheet";
|
description = "CUE Sheet Parser Library";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
libcue is intended to parse a so called cue sheet from a char string or
|
libcue is intended to parse a so called cue sheet from a char string or
|
||||||
a file pointer. For handling of the parsed data a convenient API is
|
a file pointer. For handling of the parsed data a convenient API is
|
||||||
|
Loading…
Reference in New Issue
Block a user