about summary refs log tree commit diff
path: root/pkgs/tools/text/podiff
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/text/podiff')
-rw-r--r--pkgs/tools/text/podiff/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/podiff/default.nix b/pkgs/tools/text/podiff/default.nix
index b76dfd2256a08..b44003a9f0dfb 100644
--- a/pkgs/tools/text/podiff/default.nix
+++ b/pkgs/tools/text/podiff/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl }:
+{ lib, stdenv, fetchurl }:
 
 stdenv.mkDerivation {
   pname = "podiff";
@@ -15,7 +15,7 @@ stdenv.mkDerivation {
     mkdir -p $out/share/man/man1
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Finds differences in translations between two PO files, or revisions";
     homepage = "http://puszcza.gnu.org.ua/software/podiff";
     license = licenses.gpl3Plus;