about summary refs log tree commit diff
path: root/pkgs/development/libraries/libcue
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2017-01-24 22:46:17 +0100
committerDaiderd Jordan <daiderd@gmail.com>2017-01-24 22:47:12 +0100
commitfb954784dd617cf73a7db2d77f25ac354b920061 (patch)
treed7e0a37a866e52cb7fc1ea7f67def61b2d0d8724 /pkgs/development/libraries/libcue
parente20fc5059d518d9b951d700f6ad7d37585cf1f83 (diff)
libcue: enable darwin build
Diffstat (limited to 'pkgs/development/libraries/libcue')
-rw-r--r--pkgs/development/libraries/libcue/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/libraries/libcue/default.nix b/pkgs/development/libraries/libcue/default.nix
index a1639397b5ea8..22bda89c60307 100644
--- a/pkgs/development/libraries/libcue/default.nix
+++ b/pkgs/development/libraries/libcue/default.nix
@@ -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;
   };
 }