summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorAneesh Agrawal <aneeshusa@gmail.com>2017-05-02 19:14:03 -0400
committerAneesh Agrawal <aneeshusa@gmail.com>2017-05-02 19:32:02 -0400
commitded7953478eff74d213b39136f269eb8d5eab8c9 (patch)
tree9c4c5f68ea513fae6a8cfac755bc5972345f6762 /pkgs/tools
parent572fd3de58f39b17029de857b7023d50be0cc6fb (diff)
downloadnixlib-ded7953478eff74d213b39136f269eb8d5eab8c9.tar
nixlib-ded7953478eff74d213b39136f269eb8d5eab8c9.tar.gz
nixlib-ded7953478eff74d213b39136f269eb8d5eab8c9.tar.bz2
nixlib-ded7953478eff74d213b39136f269eb8d5eab8c9.tar.lz
nixlib-ded7953478eff74d213b39136f269eb8d5eab8c9.tar.xz
nixlib-ded7953478eff74d213b39136f269eb8d5eab8c9.tar.zst
nixlib-ded7953478eff74d213b39136f269eb8d5eab8c9.zip
treewide: meta.platform -> meta.platforms
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/fakeroute/default.nix2
-rw-r--r--pkgs/tools/security/encryptr/default.nix2
-rw-r--r--pkgs/tools/text/grin/default.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/fakeroute/default.nix b/pkgs/tools/networking/fakeroute/default.nix
index 1cb614e88c03..9737108e6acf 100644
--- a/pkgs/tools/networking/fakeroute/default.nix
+++ b/pkgs/tools/networking/fakeroute/default.nix
@@ -16,6 +16,6 @@ stdenv.mkDerivation rec {
     '';
     homepage = https://moxie.org/software/fakeroute/;
     license = licenses.bsd3;
-    platform = platforms.linux;
+    platforms = platforms.linux;
   };
 }
diff --git a/pkgs/tools/security/encryptr/default.nix b/pkgs/tools/security/encryptr/default.nix
index 95d0299e8733..2cf07c63a84a 100644
--- a/pkgs/tools/security/encryptr/default.nix
+++ b/pkgs/tools/security/encryptr/default.nix
@@ -52,6 +52,6 @@ in stdenv.mkDerivation rec {
     description = "Free, private and secure password management tool and e-wallet";
     license = licenses.unfree;
     maintainers = with maintainers; [ guillaumekoenig ];
-    platform = platforms.linux;
+    platforms = platforms.linux;
   };
 }
diff --git a/pkgs/tools/text/grin/default.nix b/pkgs/tools/text/grin/default.nix
index 7c1df7f8819c..56ea13de40e5 100644
--- a/pkgs/tools/text/grin/default.nix
+++ b/pkgs/tools/text/grin/default.nix
@@ -15,7 +15,7 @@ python2Packages.buildPythonApplication rec {
   meta = {
     homepage = https://pypi.python.org/pypi/grin;
     description = "A grep program configured the way I like it";
-    platform = stdenv.lib.platforms.all;
+    platforms = stdenv.lib.platforms.all;
     maintainers = [ stdenv.lib.maintainers.sjagoe ];
   };
 }