lol

ocamlPackages.{ocf,xtmpl}: fix for OCaml 4.04

+5 -3
+3 -1
pkgs/development/ocaml-modules/ocf/default.nix
··· 18 18 19 19 createFindlibDestdir = true; 20 20 21 + dontStrip = true; 22 + 21 23 patches = [(fetchpatch { 22 24 url = "https://github.com/zoggy/ocf/commit/3a231c7a6c5e535a77c25e207af8952793436444.patch"; 23 25 sha256 = "0nc8cggc5gxhch9amaz3s71lxs1xbgi7fs9p90cng04dsgr64xk5"; 24 26 }) 25 27 ]; 28 + 26 29 meta = with stdenv.lib; { 27 30 description = "OCaml library to read and write configuration options in JSON syntax"; 28 31 homepage = "https://zoggy.github.io/ocf/"; ··· 31 34 maintainers = with maintainers; [ regnat ]; 32 35 }; 33 36 } 34 -
+2 -2
pkgs/development/ocaml-modules/xtmpl/default.nix
··· 19 19 20 20 createFindlibDestdir = true; 21 21 22 + dontStrip = true; 23 + 22 24 meta = with stdenv.lib; { 23 25 description = "Xml template library for OCaml"; 24 26 homepage = "https://zoggy.github.io/xtmpl/"; ··· 27 29 maintainers = with maintainers; [ regnat ]; 28 30 }; 29 31 } 30 - 31 -