about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/rcon/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/networking/rcon/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/networking/rcon/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/tools/networking/rcon/default.nix b/nixpkgs/pkgs/tools/networking/rcon/default.nix
index f7cd08e197e8..1ec988676e4a 100644
--- a/nixpkgs/pkgs/tools/networking/rcon/default.nix
+++ b/nixpkgs/pkgs/tools/networking/rcon/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, cmake, pkg-config, glib, libbsd, check, pcre }:
+{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, glib, libbsd, check, pcre }:
 
 stdenv.mkDerivation rec {
   pname = "rcon";
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
     pcre
   ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     homepage = "https://github.com/n0la/rcon";
     description = "Source RCON client for command line";
     maintainers = with maintainers; [ f4814n ];