forked from mirrors/nixpkgs
libcue: New nixpkg.
svn path=/nixpkgs/trunk/; revision=21147
This commit is contained in:
parent
3e40cf1f64
commit
d5337a70c8
20
pkgs/development/libraries/libcue/default.nix
Normal file
20
pkgs/development/libraries/libcue/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{ stdenv, fetchurl }:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libcue-1.3.0";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/libcue/${name}.tar.bz2";
|
||||||
|
sha256 = "0gcd9maxh82fc0qah0q8xh74sch0px3n7c0qx0298n2qbk2mkn12";
|
||||||
|
};
|
||||||
|
meta = {
|
||||||
|
description = "A library to parse a cue sheet";
|
||||||
|
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
|
||||||
|
available.
|
||||||
|
'';
|
||||||
|
homepage = http://sourceforge.net/projects/libcue/;
|
||||||
|
license = "GPLv2";
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
|
||||||
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -4173,6 +4173,10 @@ let
|
||||||
inherit fetchurl stdenv pkgconfig xlibs mesa glib;
|
inherit fetchurl stdenv pkgconfig xlibs mesa glib;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
libcue = import ../development/libraries/libcue {
|
||||||
|
inherit stdenv fetchurl;
|
||||||
|
};
|
||||||
|
|
||||||
libcv = builderDefsPackage (import ../development/libraries/libcv) {
|
libcv = builderDefsPackage (import ../development/libraries/libcv) {
|
||||||
inherit libtiff libjpeg libpng pkgconfig;
|
inherit libtiff libjpeg libpng pkgconfig;
|
||||||
inherit (gtkLibs) gtk glib;
|
inherit (gtkLibs) gtk glib;
|
||||||
|
|
Loading…
Reference in a new issue