From ea7e4b3486be8b0380236ff2bbcbaa0e85aa6f83 Mon Sep 17 00:00:00 2001 From: Svend Sorensen Date: Mon, 18 Jan 2021 19:30:22 -0800 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Sandro --- .../inputmethods/interception-tools/dual-function-keys.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/inputmethods/interception-tools/dual-function-keys.nix b/pkgs/tools/inputmethods/interception-tools/dual-function-keys.nix index c8798901905..730135e4a7d 100644 --- a/pkgs/tools/inputmethods/interception-tools/dual-function-keys.nix +++ b/pkgs/tools/inputmethods/interception-tools/dual-function-keys.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitLab, pkg-config, libyamlcpp, libevdev }: +{ stdenv, lib, fetchFromGitLab, pkg-config, libyamlcpp, libevdev }: stdenv.mkDerivation rec { pname = "dual-function-keys"; @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { installFlags = [ "DESTDIR=$(out)" "PREFIX=" ]; - meta = with stdenv.lib; { + meta = with lib; { homepage = "https://gitlab.com/interception/linux/plugins/dual-function-keys"; description = "Tap for one key, hold for another."; license = licenses.mit;