summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2018-03-07 08:32:59 +0000
committerGitHub <noreply@github.com>2018-03-07 08:32:59 +0000
commit07be75d512809c670e7a13ad8e9ad70f13f9fe87 (patch)
treeaf7330de049c483fd14b160da624201f8866ce8c /pkgs
parent8154f9ebd50d1a3f94b8598b6868dad9ff6357d6 (diff)
parentc6fdf69d44d0113d1dd654d86745f3fd51db2f55 (diff)
downloadnixpkgs-07be75d512809c670e7a13ad8e9ad70f13f9fe87.tar
nixpkgs-07be75d512809c670e7a13ad8e9ad70f13f9fe87.tar.gz
nixpkgs-07be75d512809c670e7a13ad8e9ad70f13f9fe87.tar.bz2
nixpkgs-07be75d512809c670e7a13ad8e9ad70f13f9fe87.tar.lz
nixpkgs-07be75d512809c670e7a13ad8e9ad70f13f9fe87.tar.xz
nixpkgs-07be75d512809c670e7a13ad8e9ad70f13f9fe87.tar.zst
nixpkgs-07be75d512809c670e7a13ad8e9ad70f13f9fe87.zip
Merge pull request #36403 from elts/fix/cl-launch
cl-launch: change platforms to unix
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;
   };
 }