summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-10-21 11:18:30 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-10-21 11:18:30 +0000
commit3ac40259457c445810c623b0754c97c7aa091678 (patch)
tree3523d72406e5edb97f30b325a5e42c240bf1e4d7
parent21de0b5f236ddc489a60ebf0fbae6ea3e6da870c (diff)
downloadnixpkgs-3ac40259457c445810c623b0754c97c7aa091678.tar
nixpkgs-3ac40259457c445810c623b0754c97c7aa091678.tar.gz
nixpkgs-3ac40259457c445810c623b0754c97c7aa091678.tar.bz2
nixpkgs-3ac40259457c445810c623b0754c97c7aa091678.tar.lz
nixpkgs-3ac40259457c445810c623b0754c97c7aa091678.tar.xz
nixpkgs-3ac40259457c445810c623b0754c97c7aa091678.tar.zst
nixpkgs-3ac40259457c445810c623b0754c97c7aa091678.zip
* Add some packages to the channel.
svn path=/nixpkgs/trunk/; revision=24397
-rw-r--r--pkgs/applications/window-managers/compiz/ccsm.nix1
-rw-r--r--pkgs/applications/window-managers/compiz/core.nix1
-rw-r--r--pkgs/applications/window-managers/compiz/plugins-extra.nix1
-rw-r--r--pkgs/applications/window-managers/compiz/plugins-main.nix1
-rw-r--r--pkgs/tools/bluetooth/obexftp/default.nix1
-rw-r--r--pkgs/tools/bluetooth/openobex/default.nix1
-rw-r--r--pkgs/tools/filesystems/sshfs-fuse/default.nix1
-rw-r--r--pkgs/top-level/release.nix1
8 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/applications/window-managers/compiz/ccsm.nix b/pkgs/applications/window-managers/compiz/ccsm.nix
index 4b544fec1ef..0406a170d19 100644
--- a/pkgs/applications/window-managers/compiz/ccsm.nix
+++ b/pkgs/applications/window-managers/compiz/ccsm.nix
@@ -26,5 +26,6 @@ stdenv.mkDerivation rec {
   meta = {
     homepage = http://www.compiz.org/;
     description = "Compiz settings manager";
+    platforms = stdenv.lib.platforms.linux;
   };
 }
diff --git a/pkgs/applications/window-managers/compiz/core.nix b/pkgs/applications/window-managers/compiz/core.nix
index 497b9c279ca..ef5279613d0 100644
--- a/pkgs/applications/window-managers/compiz/core.nix
+++ b/pkgs/applications/window-managers/compiz/core.nix
@@ -32,5 +32,6 @@ stdenv.mkDerivation {
   meta = {
     homepage = http://www.compiz.org/;
     description = "A compositing window manager";
+    platforms = stdenv.lib.platforms.linux;
   };
 }
diff --git a/pkgs/applications/window-managers/compiz/plugins-extra.nix b/pkgs/applications/window-managers/compiz/plugins-extra.nix
index 18b779d9b49..8852ebd474e 100644
--- a/pkgs/applications/window-managers/compiz/plugins-extra.nix
+++ b/pkgs/applications/window-managers/compiz/plugins-extra.nix
@@ -25,5 +25,6 @@ stdenv.mkDerivation rec {
   meta = {
     homepage = http://www.compiz.org/;
     description = "Extra plugins for Compiz";
+    platforms = stdenv.lib.platforms.linux;
   };
 }
diff --git a/pkgs/applications/window-managers/compiz/plugins-main.nix b/pkgs/applications/window-managers/compiz/plugins-main.nix
index 4c9e3b12c72..ea1c01e7414 100644
--- a/pkgs/applications/window-managers/compiz/plugins-main.nix
+++ b/pkgs/applications/window-managers/compiz/plugins-main.nix
@@ -17,5 +17,6 @@ stdenv.mkDerivation rec {
   meta = {
     homepage = http://www.compiz.org/;
     description = "Main plugins for Compiz";
+    platforms = stdenv.lib.platforms.linux;
   };
 }
diff --git a/pkgs/tools/bluetooth/obexftp/default.nix b/pkgs/tools/bluetooth/obexftp/default.nix
index c1531b1ce16..7326b1b4075 100644
--- a/pkgs/tools/bluetooth/obexftp/default.nix
+++ b/pkgs/tools/bluetooth/obexftp/default.nix
@@ -15,5 +15,6 @@ stdenv.mkDerivation rec {
   meta = {
     homepage = http://dev.zuckschwerdt.org/openobex/wiki/ObexFtp;
     description = "A library and tool to access files on OBEX-based devices (such as Bluetooth phones)";
+    platforms = stdenv.lib.platforms.linux;
   };
 }
diff --git a/pkgs/tools/bluetooth/openobex/default.nix b/pkgs/tools/bluetooth/openobex/default.nix
index 21c0c119c4c..97ed96371c8 100644
--- a/pkgs/tools/bluetooth/openobex/default.nix
+++ b/pkgs/tools/bluetooth/openobex/default.nix
@@ -15,5 +15,6 @@ stdenv.mkDerivation rec {
   meta = {
     homepage = http://dev.zuckschwerdt.org/openobex/;
     description = "An open source implementation of the Object Exchange (OBEX) protocol";
+    platforms = stdenv.lib.platforms.linux;
   };
 }
diff --git a/pkgs/tools/filesystems/sshfs-fuse/default.nix b/pkgs/tools/filesystems/sshfs-fuse/default.nix
index 74a367e8522..92e7d854fd8 100644
--- a/pkgs/tools/filesystems/sshfs-fuse/default.nix
+++ b/pkgs/tools/filesystems/sshfs-fuse/default.nix
@@ -13,5 +13,6 @@ stdenv.mkDerivation rec {
   meta = {
     homepage = http://fuse.sourceforge.net/sshfs.html;
     description = "FUSE-based filesystem that allows remote filesystems to be mounted over SSH";
+    platforms = stdenv.lib.platforms.linux;
   };
 }
diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix
index 09b3cd11522..36c2542fad0 100644
--- a/pkgs/top-level/release.nix
+++ b/pkgs/top-level/release.nix
@@ -54,7 +54,6 @@ with (import ./release-lib.nix);
   cksfv = all;
   classpath = linux;
   cmake = all;
-  #compiz = linux;
   consolekit = linux;
   coreutils = all;
   cpio = all;