summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/magick/default.nix
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2021-01-19 13:50:04 +0100
committerJan Tojnar <jtojnar@gmail.com>2021-01-19 13:50:04 +0100
commitfc7bd322dfcd204ce6daa95285ff358999ff9a8d (patch)
tree152ad62f3f30148a64a247fc583af45c80cab40c /pkgs/development/ocaml-modules/magick/default.nix
parent2d91ad963fe799fce74cf52d8d9ea2d4bc963a93 (diff)
parent1d26caa746f7eda613c5e87342889e55b9e5ba96 (diff)
downloadnixpkgs-fc7bd322dfcd204ce6daa95285ff358999ff9a8d.tar
nixpkgs-fc7bd322dfcd204ce6daa95285ff358999ff9a8d.tar.gz
nixpkgs-fc7bd322dfcd204ce6daa95285ff358999ff9a8d.tar.bz2
nixpkgs-fc7bd322dfcd204ce6daa95285ff358999ff9a8d.tar.lz
nixpkgs-fc7bd322dfcd204ce6daa95285ff358999ff9a8d.tar.xz
nixpkgs-fc7bd322dfcd204ce6daa95285ff358999ff9a8d.tar.zst
nixpkgs-fc7bd322dfcd204ce6daa95285ff358999ff9a8d.zip
Merge branch 'staging-next' into staging
Diffstat (limited to 'pkgs/development/ocaml-modules/magick/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/magick/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/magick/default.nix b/pkgs/development/ocaml-modules/magick/default.nix
index 4fcf267e9c0..016c059573b 100644
--- a/pkgs/development/ocaml-modules/magick/default.nix
+++ b/pkgs/development/ocaml-modules/magick/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchurl, which, pkgconfig, ocaml, findlib, imagemagick }:
+{ stdenv, lib, fetchurl, which, pkg-config, ocaml, findlib, imagemagick }:
 
 if lib.versionAtLeast ocaml.version "4.06"
 then throw "magick is not available for OCaml ${ocaml.version}"
@@ -11,7 +11,7 @@ stdenv.mkDerivation {
     sha256 = "0gn9l2qdr8gby2x8c2mb59x1kipb2plr45rbq6ymcxyi0wmzfh3q";
   };
 
-  nativeBuildInputs = [ which pkgconfig ];
+  nativeBuildInputs = [ which pkg-config ];
   buildInputs = [ ocaml findlib imagemagick ];
 
   createFindlibDestdir = true;