about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-08-02 17:41:28 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-08-02 21:17:44 +0300
commitb96fe03484ba8fa3091664246ec67a57f5703b1a (patch)
tree2d673f1f41dc21507849e1012eeede4c49aaeef2 /pkgs/development
parente669521834c5670bb0e79d9b25f3e3d10aede156 (diff)
downloadnixlib-b96fe03484ba8fa3091664246ec67a57f5703b1a.tar
nixlib-b96fe03484ba8fa3091664246ec67a57f5703b1a.tar.gz
nixlib-b96fe03484ba8fa3091664246ec67a57f5703b1a.tar.bz2
nixlib-b96fe03484ba8fa3091664246ec67a57f5703b1a.tar.lz
nixlib-b96fe03484ba8fa3091664246ec67a57f5703b1a.tar.xz
nixlib-b96fe03484ba8fa3091664246ec67a57f5703b1a.tar.zst
nixlib-b96fe03484ba8fa3091664246ec67a57f5703b1a.zip
treewide: Fix meta.platforms related typos
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/interpreters/picolisp/default.nix2
-rw-r--r--pkgs/development/libraries/assimp/default.nix3
-rw-r--r--pkgs/development/libraries/zeromq/3.x.nix2
-rw-r--r--pkgs/development/web/valum/default.nix2
4 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/interpreters/picolisp/default.nix b/pkgs/development/interpreters/picolisp/default.nix
index 5832bbea9b7d..9c669ceed68b 100644
--- a/pkgs/development/interpreters/picolisp/default.nix
+++ b/pkgs/development/interpreters/picolisp/default.nix
@@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
     description = "A simple Lisp with an integrated database";
     homepage = http://picolisp.com/;
     license = licenses.mit;
-    platform = platforms.all;
+    platforms = platforms.all;
     maintainers = with maintainers; [ raskin tohl ];
   };
 
diff --git a/pkgs/development/libraries/assimp/default.nix b/pkgs/development/libraries/assimp/default.nix
index ef75ad3fe871..3511c3331bc4 100644
--- a/pkgs/development/libraries/assimp/default.nix
+++ b/pkgs/development/libraries/assimp/default.nix
@@ -20,7 +20,6 @@ stdenv.mkDerivation {
     homepage = http://assimp.sourceforge.net/;
     license = licenses.bsd3;
     maintainers = with maintainers; [ ehmry ];
-    platfroms = [ platforms.linux platforms.darwin ];
-    inherit version;
+    platforms = platforms.unix;
   };
 }
diff --git a/pkgs/development/libraries/zeromq/3.x.nix b/pkgs/development/libraries/zeromq/3.x.nix
index 50eba33670f9..54265d2f095a 100644
--- a/pkgs/development/libraries/zeromq/3.x.nix
+++ b/pkgs/development/libraries/zeromq/3.x.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
     homepage = "http://www.zeromq.org";
     description = "The Intelligent Transport Layer";
     license = licenses.gpl3;
-    platform = platforms.all;
+    platforms = platforms.all;
     maintainers = with maintainers; [ wkennington ];
   };
 }
diff --git a/pkgs/development/web/valum/default.nix b/pkgs/development/web/valum/default.nix
index 633d30862569..6348008ab92e 100644
--- a/pkgs/development/web/valum/default.nix
+++ b/pkgs/development/web/valum/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     homepage = https://github.com/valum-framework/valum;
     description = "Web micro-framework written in Vala";
-    plaforms = platforms.linux;
+    platforms = platforms.linux;
     maintainers = [ maintainers.lethalman ];
   };
 }