about summary refs log tree commit diff
path: root/pkgs/tools/misc/woof/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/woof/default.nix')
-rw-r--r--pkgs/tools/misc/woof/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/woof/default.nix b/pkgs/tools/misc/woof/default.nix
index 158a83a99ca5a..5c48a3cb27582 100644
--- a/pkgs/tools/misc/woof/default.nix
+++ b/pkgs/tools/misc/woof/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, python3 }:
+{ lib, stdenv, fetchFromGitHub, python3 }:
 
 stdenv.mkDerivation rec {
   version = "2020-12-17";
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
     chmod +x $out/bin/woof
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     homepage = "http://www.home.unix-ag.org/simon/woof.html";
     description = "Web Offer One File - Command-line utility to easily exchange files over a local network";
     license = stdenv.lib.licenses.gpl2Plus;