pkgs/tools: stdenv.lib -> lib
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, libjpeg, lcms2, gettext, libiconv }:
|
||||
{lib, stdenv, fetchurl, libjpeg, lcms2, gettext, libiconv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dcraw-9.28.0";
|
||||
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1fdl3xa1fbm71xzc3760rsjkvf0x5jdjrvdzyg2l9ka24vdc7418";
|
||||
};
|
||||
|
||||
nativeBuildInputs = stdenv.lib.optional stdenv.isDarwin libiconv;
|
||||
nativeBuildInputs = lib.optional stdenv.isDarwin libiconv;
|
||||
buildInputs = [ libjpeg lcms2 gettext ];
|
||||
|
||||
# Jasper is disabled because the library is abandoned and has many
|
||||
@@ -28,8 +28,8 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
homepage = "https://www.dechifro.org/dcraw/";
|
||||
description = "Decoder for many camera raw picture formats";
|
||||
license = stdenv.lib.licenses.free;
|
||||
platforms = stdenv.lib.platforms.unix; # Once had cygwin problems
|
||||
license = lib.licenses.free;
|
||||
platforms = lib.platforms.unix; # Once had cygwin problems
|
||||
maintainers = [ ];
|
||||
knownVulnerabilities = [
|
||||
"CVE-2018-19655"
|
||||
|
||||
Reference in New Issue
Block a user