summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/inputmethods/interception-tools
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2017-12-05 11:57:11 +0000
committerRobin Gloster <mail@glob.in>2017-12-05 13:46:52 +0100
commit1858e8909e63033f14f463c29876e831dd2cd7d9 (patch)
treebe0794f643fe2b0bd44a8ddbf0488c43b8a2e900 /pkgs/tools/inputmethods/interception-tools
parent8ae51ff9c1309933dec9a391c6fa683f179ce45a (diff)
tree-wide: fix either check-meta or meta attrs of all the packages I evaluate
Diffstat (limited to 'pkgs/tools/inputmethods/interception-tools')
-rw-r--r--pkgs/tools/inputmethods/interception-tools/caps2esc.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/inputmethods/interception-tools/caps2esc.nix b/pkgs/tools/inputmethods/interception-tools/caps2esc.nix
index b31a24b0c837..994e9da3e430 100644
--- a/pkgs/tools/inputmethods/interception-tools/caps2esc.nix
+++ b/pkgs/tools/inputmethods/interception-tools/caps2esc.nix
@@ -13,11 +13,11 @@ in stdenv.mkDerivation {
buildInputs = [ cmake ];
- meta = {
+ meta = with stdenv.lib; {
homepage = "https://gitlab.com/interception/linux/plugins/caps2esc";
description = "Transforming the most useless key ever into the most useful one";
- license = stdenv.lib.licenses.mit;
- maintainers = stdenv.lib.maintainers.vyp;
- platforms = stdenv.lib.platforms.linux;
+ license = licenses.mit;
+ maintainers = [ maintainers.vyp ];
+ platforms = platforms.linux;
};
}