summary refs log tree commit diff
path: root/pkgs/development/libraries/sqlite
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2013-06-29 13:31:17 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2013-06-29 13:36:08 +0200
commitb02b7bd1621d69cd04d2d21b1381af9db2f5dae7 (patch)
treef57faa1ae550be3d311a26a1611794ade1340f54 /pkgs/development/libraries/sqlite
parentf82ba5a2ca12639c7b34986ed70fb8961f68b0cd (diff)
downloadnixlib-b02b7bd1621d69cd04d2d21b1381af9db2f5dae7.tar
nixlib-b02b7bd1621d69cd04d2d21b1381af9db2f5dae7.tar.gz
nixlib-b02b7bd1621d69cd04d2d21b1381af9db2f5dae7.tar.bz2
nixlib-b02b7bd1621d69cd04d2d21b1381af9db2f5dae7.tar.lz
nixlib-b02b7bd1621d69cd04d2d21b1381af9db2f5dae7.tar.xz
nixlib-b02b7bd1621d69cd04d2d21b1381af9db2f5dae7.tar.zst
nixlib-b02b7bd1621d69cd04d2d21b1381af9db2f5dae7.zip
sqlite: set meta.platforms so that Hydra will build it
I'm sure that sqlite works on more platforms than linux, but I cannot
verify that myself (I only have linux). So I'll leave it up to the users
of other platforms to expand this as needed.
Diffstat (limited to 'pkgs/development/libraries/sqlite')
-rw-r--r--pkgs/development/libraries/sqlite/3.7.14.nix1
-rw-r--r--pkgs/development/libraries/sqlite/3.7.16.nix1
2 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/sqlite/3.7.14.nix b/pkgs/development/libraries/sqlite/3.7.14.nix
index be3a24c1e4ce..50338f98a2c2 100644
--- a/pkgs/development/libraries/sqlite/3.7.14.nix
+++ b/pkgs/development/libraries/sqlite/3.7.14.nix
@@ -20,5 +20,6 @@ stdenv.mkDerivation {
   meta = {
     homepage = http://www.sqlite.org/;
     description = "A self-contained, serverless, zero-configuration, transactional SQL database engine";
+    platforms = stdenv.lib.platforms.linux;
   };
 }
diff --git a/pkgs/development/libraries/sqlite/3.7.16.nix b/pkgs/development/libraries/sqlite/3.7.16.nix
index 231f4e5d69c8..f681e94c6baf 100644
--- a/pkgs/development/libraries/sqlite/3.7.16.nix
+++ b/pkgs/development/libraries/sqlite/3.7.16.nix
@@ -20,5 +20,6 @@ stdenv.mkDerivation {
   meta = {
     homepage = http://www.sqlite.org/;
     description = "A self-contained, serverless, zero-configuration, transactional SQL database engine";
+    platforms = stdenv.lib.platforms.linux;
   };
 }