at v192 20 lines 701 B view raw
1{ stdenv, fetchurl }: 2stdenv.mkDerivation rec { 3 name = "libcue-1.4.0"; 4 src = fetchurl { 5 url = "mirror://sourceforge/libcue/${name}.tar.bz2"; 6 sha256 = "17kjd7rjz1bvfn44n3n2bjb7a1ywd0yc0g4sqp5ihf9b5bn7cwlb"; 7 }; 8 meta = { 9 description = "A library to parse a cue sheet"; 10 longDescription = '' 11 libcue is intended to parse a so called cue sheet from a char string or 12 a file pointer. For handling of the parsed data a convenient API is 13 available. 14 ''; 15 homepage = http://sourceforge.net/projects/libcue/; 16 license = stdenv.lib.licenses.gpl2; 17 maintainers = with stdenv.lib.maintainers; [ astsmtl ]; 18 platforms = with stdenv.lib.platforms; linux; 19 }; 20}