tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.ocamlnet: 4.1.4 -> 4.1.5
Vincent Laporte
8 years ago
0c8235e4
9adbe647
+3
-9
1 changed file
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
ocamlnet
default.nix
+3
-9
pkgs/development/ocaml-modules/ocamlnet/default.nix
···
1
{ stdenv, fetchurl, pkgconfig, ncurses, ocaml, findlib, ocaml_pcre, camlzip
2
-
, gnutls, nettle_3_3 }:
3
-
4
-
# These overrides are just temporary, until ocamlnet supports nettle-3.4.
5
-
let gnutls_orig = gnutls; in
6
-
let gnutls = gnutls_orig.override { nettle = nettle_3_3; };
7
-
nettle = nettle_3_3;
8
-
in
9
10
-
let version = "4.1.4"; in
11
12
stdenv.mkDerivation {
13
name = "ocaml${ocaml.version}-ocamlnet-${version}";
14
15
src = fetchurl {
16
url = "http://download.camlcity.org/download/ocamlnet-${version}.tar.gz";
17
-
sha256 = "0hhi3s4xas5i3p7214qfji5pvr7d30d89vnmkznxsfqj4v7dmhs6";
18
};
19
20
nativeBuildInputs = [ pkgconfig ];
···
1
{ stdenv, fetchurl, pkgconfig, ncurses, ocaml, findlib, ocaml_pcre, camlzip
2
+
, gnutls, nettle }:
0
0
0
0
0
0
3
4
+
let version = "4.1.5"; in
5
6
stdenv.mkDerivation {
7
name = "ocaml${ocaml.version}-ocamlnet-${version}";
8
9
src = fetchurl {
10
url = "http://download.camlcity.org/download/ocamlnet-${version}.tar.gz";
11
+
sha256 = "1ppcd2zjhj6s3ib9q8dngnr53qlmkhvv7a8hzp88r79k6jygn4cm";
12
};
13
14
nativeBuildInputs = [ pkgconfig ];