tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.{ocf,xtmpl}: fix for OCaml 4.04
Vincent Laporte
9 years ago
fcb9f443
e5d0593a
+5
-3
2 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
ocf
default.nix
xtmpl
default.nix
+3
-1
pkgs/development/ocaml-modules/ocf/default.nix
reviewed
···
18
18
19
19
createFindlibDestdir = true;
20
20
21
21
+
dontStrip = true;
22
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
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
34
-
+2
-2
pkgs/development/ocaml-modules/xtmpl/default.nix
reviewed
···
19
19
20
20
createFindlibDestdir = true;
21
21
22
22
+
dontStrip = true;
23
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
30
-
31
31
-