summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorEldar Tsraev <elts@culab.org>2018-03-07 16:28:13 +1300
committerEldar Tsraev <elts@culab.org>2018-03-07 16:31:34 +1300
commitc6fdf69d44d0113d1dd654d86745f3fd51db2f55 (patch)
tree189a3467668614345790e8feb8a3d1e45018ed34 /pkgs
parentdc1e064612ed2fee3e1ae428453641485ad8b759 (diff)
downloadnixpkgs-c6fdf69d44d0113d1dd654d86745f3fd51db2f55.tar
nixpkgs-c6fdf69d44d0113d1dd654d86745f3fd51db2f55.tar.gz
nixpkgs-c6fdf69d44d0113d1dd654d86745f3fd51db2f55.tar.bz2
nixpkgs-c6fdf69d44d0113d1dd654d86745f3fd51db2f55.tar.lz
nixpkgs-c6fdf69d44d0113d1dd654d86745f3fd51db2f55.tar.xz
nixpkgs-c6fdf69d44d0113d1dd654d86745f3fd51db2f55.tar.zst
nixpkgs-c6fdf69d44d0113d1dd654d86745f3fd51db2f55.zip
cl-launch: change platforms to unix
this will alow to build / use cl-launch on other platforms
e.g. MacOS, FreeBSD
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/misc/cl-launch/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/misc/cl-launch/default.nix b/pkgs/development/tools/misc/cl-launch/default.nix
index ffd668dbdee..c245a32a06d 100644
--- a/pkgs/development/tools/misc/cl-launch/default.nix
+++ b/pkgs/development/tools/misc/cl-launch/default.nix
@@ -33,6 +33,6 @@ stdenv.mkDerivation {
     description = ''Common Lisp launcher script'';
     license = stdenv.lib.licenses.llgpl21 ;
     maintainers = [stdenv.lib.maintainers.raskin];
-    platforms = stdenv.lib.platforms.linux;
+    platforms = stdenv.lib.platforms.unix;
   };
 }