From a80be3b6eaaeb223c398bbf96a4fafc60dcb70be Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Fri, 21 May 2021 10:43:08 +0200 Subject: [PATCH] stdenv.lib -> lib --- default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index cefec3f..e0ae2f0 100644 --- a/default.nix +++ b/default.nix @@ -1,4 +1,4 @@ -{ stdenv, perlPackages }: +{ lib, stdenv, perlPackages }: stdenv.mkDerivation rec { pname = "urxvt-config-reload"; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { install -D -m644 "$src"/* -t "$out/lib/urxvt/perl" ''; - meta = with stdenv.lib; { + meta = with lib; { description = "A urxvt plugin that reloads the configuration on SIGUSR1"; homepage = "https://maxwell.ydns.eu/git/rnhmjoj/urxvt-config-reload"; maintainers = with maintainers; [ rnhmjoj ];