libcue: 1.4.0 -> 2.1.0

This commit is contained in:
Franz Pletz 2016-10-13 03:11:25 +02:00
parent a637b4d950
commit e50be9ff75
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -1,12 +1,19 @@
{ stdenv, fetchurl }:
{ stdenv, fetchFromGitHub, cmake, bison, flex }:
stdenv.mkDerivation rec {
name = "libcue-1.4.0";
src = fetchurl {
url = "mirror://sourceforge/libcue/${name}.tar.bz2";
sha256 = "17kjd7rjz1bvfn44n3n2bjb7a1ywd0yc0g4sqp5ihf9b5bn7cwlb";
name = "libcue-${version}";
version = "2.1.0";
src = fetchFromGitHub {
owner = "lipnitsk";
repo = "libcue";
rev = "v${version}";
sha256 = "14a84d6sq3yp8s8i05lxvifjpkgpjwfpchrqf3bbpbwa8gvrc0rj";
};
nativeBuildInputs = [ cmake bison flex ];
meta = {
description = "A library to parse a cue sheet";
description = "CUE Sheet Parser Library";
longDescription = ''
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