lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.magick: disable for OCaml ≥ 4.06

+4
+4
pkgs/development/ocaml-modules/magick/default.nix
··· 1 1 { stdenv, fetchurl, which, pkgconfig, ocaml, findlib, imagemagick }: 2 2 3 + if stdenv.lib.versionAtLeast ocaml.version "4.06" 4 + then throw "magick is not available for OCaml ${ocaml.version}" 5 + else 6 + 3 7 stdenv.mkDerivation { 4 8 name = "ocaml-magick-0.34"; 5 9 src = fetchurl {