about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2021-01-24 01:40:18 +0100
committerPavol Rusnak <pavol@rusnak.io>2021-01-24 01:49:49 +0100
commit90f73381120f7ae9e0d5f0f6dc16cb141c658494 (patch)
tree5683ff0c39f9ac901e181fc0591cf03c2b95b07a /pkgs/applications/graphics
parent2f34b4b883932f0ee2c1787e704f3915786e8cca (diff)
downloadnixlib-90f73381120f7ae9e0d5f0f6dc16cb141c658494.tar
nixlib-90f73381120f7ae9e0d5f0f6dc16cb141c658494.tar.gz
nixlib-90f73381120f7ae9e0d5f0f6dc16cb141c658494.tar.bz2
nixlib-90f73381120f7ae9e0d5f0f6dc16cb141c658494.tar.lz
nixlib-90f73381120f7ae9e0d5f0f6dc16cb141c658494.tar.xz
nixlib-90f73381120f7ae9e0d5f0f6dc16cb141c658494.tar.zst
nixlib-90f73381120f7ae9e0d5f0f6dc16cb141c658494.zip
treewide: stdenv.lib -> lib
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/hdr-plus/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/hdr-plus/default.nix b/pkgs/applications/graphics/hdr-plus/default.nix
index 107694b2fcd2..15042e6877ff 100644
--- a/pkgs/applications/graphics/hdr-plus/default.nix
+++ b/pkgs/applications/graphics/hdr-plus/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, fetchpatch
+{ lib, stdenv, fetchFromGitHub, fetchpatch
 , cmake, halide
 , libpng, libjpeg, libtiff, libraw
 }:
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
     done
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Burst photography pipeline based on Google's HDR+";
     homepage = "https://www.timothybrooks.com/tech/hdr-plus/";
     license = licenses.mit;