libcue: enable darwin build
This commit is contained in:
parent
e20fc5059d
commit
fb954784dd
@ -1,4 +1,5 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake, bison, flex }:
|
{ stdenv, fetchFromGitHub, cmake, bison, flex }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libcue-${version}";
|
name = "libcue-${version}";
|
||||||
version = "2.1.0";
|
version = "2.1.0";
|
||||||
@ -12,7 +13,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ cmake bison flex ];
|
nativeBuildInputs = [ cmake bison flex ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "CUE Sheet Parser Library";
|
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
|
||||||
@ -20,8 +21,8 @@ stdenv.mkDerivation rec {
|
|||||||
available.
|
available.
|
||||||
'';
|
'';
|
||||||
homepage = http://sourceforge.net/projects/libcue/;
|
homepage = http://sourceforge.net/projects/libcue/;
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
|
maintainers = with maintainers; [ astsmtl ];
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user