summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorAlexander Flatter <flatter@fastmail.fm>2014-11-11 15:44:45 +0100
committerAlexander Flatter <flatter@fastmail.fm>2014-11-11 15:44:45 +0100
commit064f10ba3c3d17f4d3c28862c42fe4ed935cd7ad (patch)
treeb9db30068055f0b009d788682394cdf19d98e65a /pkgs/development
parent96c66aea67547c83d555cc64b3af9fec10cf7977 (diff)
downloadnixlib-064f10ba3c3d17f4d3c28862c42fe4ed935cd7ad.tar
nixlib-064f10ba3c3d17f4d3c28862c42fe4ed935cd7ad.tar.gz
nixlib-064f10ba3c3d17f4d3c28862c42fe4ed935cd7ad.tar.bz2
nixlib-064f10ba3c3d17f4d3c28862c42fe4ed935cd7ad.tar.lz
nixlib-064f10ba3c3d17f4d3c28862c42fe4ed935cd7ad.tar.xz
nixlib-064f10ba3c3d17f4d3c28862c42fe4ed935cd7ad.tar.zst
nixlib-064f10ba3c3d17f4d3c28862c42fe4ed935cd7ad.zip
Allow leiningen to build on darwin
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/build-managers/leiningen/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/build-managers/leiningen/default.nix b/pkgs/development/tools/build-managers/leiningen/default.nix
index 7a7755ab2b04..5f3a032051b1 100644
--- a/pkgs/development/tools/build-managers/leiningen/default.nix
+++ b/pkgs/development/tools/build-managers/leiningen/default.nix
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
     homepage = http://leiningen.org/;
     description = "Project automation for Clojure";
     license = stdenv.lib.licenses.epl10;
-    platforms = stdenv.lib.platforms.linux;
+    platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
     maintainers = with stdenv.lib.maintainers; [ the-kenny ];
   };
 }