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.mkDerivation rec {
name = "libcue-${version}";
version = "2.1.0";
@ -12,7 +13,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake bison flex ];
meta = {
meta = with stdenv.lib; {
description = "CUE Sheet Parser Library";
longDescription = ''
libcue is intended to parse a so called cue sheet from a char string or
@ -20,8 +21,8 @@ stdenv.mkDerivation rec {
available.
'';
homepage = http://sourceforge.net/projects/libcue/;
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
platforms = with stdenv.lib.platforms; linux;
license = licenses.gpl2;
maintainers = with maintainers; [ astsmtl ];
platforms = platforms.linux ++ platforms.darwin;
};
}