tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.extlib: 1.6.1 -> 1.7.2
Vincent Laporte
9 years ago
08c87eed
1258bf9d
+6
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
extlib
default.nix
+6
-6
pkgs/development/ocaml-modules/extlib/default.nix
···
1
1
-
{stdenv, fetchurl, ocaml, findlib, camlp4, minimal ? true}:
1
1
+
{ stdenv, fetchurl, ocaml, findlib, cppo, minimal ? true }:
2
2
3
3
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.11";
4
4
5
5
stdenv.mkDerivation {
6
6
-
name = "ocaml-extlib-1.6.1";
6
6
+
name = "ocaml-extlib-1.7.2";
7
7
8
8
src = fetchurl {
9
9
-
url = http://ocaml-extlib.googlecode.com/files/extlib-1.6.1.tar.gz;
10
10
-
sha256 = "1jmfj2w0f3ap0swz8k3qqmrl6x2y4gkmg88vv024xnmliiiv7m48";
9
9
+
url = http://ygrek.org.ua/p/release/ocaml-extlib/extlib-1.7.2.tar.gz;
10
10
+
sha256 = "0r7mhfgh6n5chj9r12s2x1fxrzvh6nm8h80ykl1mr75j86za41bm";
11
11
};
12
12
13
13
-
buildInputs = [ocaml findlib camlp4];
13
13
+
buildInputs = [ ocaml findlib cppo ];
14
14
15
15
createFindlibDestdir = true;
16
16
···
20
20
installPhase = "make ${if minimal then "minimal=1" else ""} install";
21
21
22
22
meta = {
23
23
-
homepage = http://code.google.com/p/ocaml-extlib/;
23
23
+
homepage = https://github.com/ygrek/ocaml-extlib;
24
24
description = "Enhancements to the OCaml Standard Library modules";
25
25
license = stdenv.lib.licenses.lgpl21;
26
26
platforms = ocaml.meta.platforms or [];