about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/noteshrink/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/misc/noteshrink/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/misc/noteshrink/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/tools/misc/noteshrink/default.nix b/nixpkgs/pkgs/tools/misc/noteshrink/default.nix
index b934b1288703..2d6f23de4687 100644
--- a/nixpkgs/pkgs/tools/misc/noteshrink/default.nix
+++ b/nixpkgs/pkgs/tools/misc/noteshrink/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, python3, imagemagick }:
+{ lib, stdenv, fetchFromGitHub, python3, imagemagick }:
 
 with python3.pkgs;
 
@@ -15,7 +15,7 @@ buildPythonApplication rec {
 
   propagatedBuildInputs = [ numpy scipy imagemagick pillow ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Convert scans of handwritten notes to beautiful, compact PDFs";
     homepage    = "https://mzucker.github.io/2016/09/20/noteshrink.html";
     license     = licenses.mit;