summary refs log tree commit diff
path: root/pkgs/tools/audio/glyr
diff options
context:
space:
mode:
authorJosef Kemetmüller <josef.kemetmueller@gmail.com>2018-03-24 19:04:56 +0100
committerJosef Kemetmüller <josef.kemetmueller@gmail.com>2018-03-24 19:04:56 +0100
commitad3eb5d8fc6233eb2e71440d6b0fa412890d5c7a (patch)
treea328487946a0b69528ce21caee71bd73941ff903 /pkgs/tools/audio/glyr
parenta6425fc66dbbcdd8dc23c8c721e15d6ed6126325 (diff)
downloadnixpkgs-ad3eb5d8fc6233eb2e71440d6b0fa412890d5c7a.tar
nixpkgs-ad3eb5d8fc6233eb2e71440d6b0fa412890d5c7a.tar.gz
nixpkgs-ad3eb5d8fc6233eb2e71440d6b0fa412890d5c7a.tar.bz2
nixpkgs-ad3eb5d8fc6233eb2e71440d6b0fa412890d5c7a.tar.lz
nixpkgs-ad3eb5d8fc6233eb2e71440d6b0fa412890d5c7a.tar.xz
nixpkgs-ad3eb5d8fc6233eb2e71440d6b0fa412890d5c7a.tar.zst
nixpkgs-ad3eb5d8fc6233eb2e71440d6b0fa412890d5c7a.zip
glyr: enable darwin build
Diffstat (limited to 'pkgs/tools/audio/glyr')
-rw-r--r--pkgs/tools/audio/glyr/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/tools/audio/glyr/default.nix b/pkgs/tools/audio/glyr/default.nix
index e98667b8c04..23a33122c9f 100644
--- a/pkgs/tools/audio/glyr/default.nix
+++ b/pkgs/tools/audio/glyr/default.nix
@@ -15,16 +15,12 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ cmake pkgconfig ];
   buildInputs = [ sqlite glib curl ];
 
-  configurePhase = ''
-    cmake -DCMAKE_INSTALL_PREFIX=$out
-  '';
-
   meta = with stdenv.lib; {
     license = licenses.lgpl3;
     description = "A music related metadata searchengine";
     homepage = https://github.com/sahib/glyr;
     maintainers = [ maintainers.sternenseemann ];
-    platforms = platforms.linux; # TODO macOS would be possible
+    platforms = platforms.unix;
   };
 }