tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.lwt: 5.6.1 → 5.7.0
Vincent Laporte
2 years ago
fa23afc1
bbb8c889
+2
-9
1 changed file
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
lwt
default.nix
+2
-9
pkgs/development/ocaml-modules/lwt/default.nix
···
4
4
5
5
buildDunePackage rec {
6
6
pname = "lwt";
7
7
-
version = "5.6.1";
7
7
+
version = "5.7.0";
8
8
9
9
minimalOCamlVersion = "4.08";
10
10
···
12
12
owner = "ocsigen";
13
13
repo = "lwt";
14
14
rev = version;
15
15
-
sha256 = "sha256-XstKs0tMwliCyXnP0Vzi5WC27HKJGnATUYtbbQmH1TE=";
15
15
+
hash = "sha256-o0wPK6dPdnsr/LzwcSwbIGcL85wkDjdFuEcAxuS/UEs=";
16
16
};
17
17
-
18
18
-
postPatch = lib.optionalString (lib.versionAtLeast ocaml.version "5.0") ''
19
19
-
substituteInPlace src/core/dune \
20
20
-
--replace "(libraries bytes)" ""
21
21
-
substituteInPlace src/unix/dune \
22
22
-
--replace "libraries bigarray lwt" "libraries lwt"
23
23
-
'';
24
17
25
18
nativeBuildInputs = [ cppo ];
26
19
buildInputs = [ dune-configurator ];