libcue: enable darwin build

This commit is contained in:
Daiderd Jordan 2017-01-24 22:46:17 +01:00
parent e20fc5059d
commit fb954784dd
No known key found for this signature in database
GPG Key ID: D02435D05B810C96

View File

@ -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;
}; };
} }