tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.ocp-indent: use Dune 3
Vincent Laporte
2 years ago
757ec67f
ac28a811
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
ocaml
ocp-indent
default.nix
+4
-3
pkgs/development/tools/ocaml/ocp-indent/default.nix
···
1
1
-
{ lib, fetchFromGitHub, buildDunePackage, cmdliner }:
1
1
+
{ lib, fetchFromGitHub, buildDunePackage, cmdliner, findlib }:
2
2
3
3
buildDunePackage rec {
4
4
version = "1.8.2";
5
5
pname = "ocp-indent";
6
6
7
7
-
useDune2 = true;
7
7
+
duneVersion = "3";
8
8
9
9
src = fetchFromGitHub {
10
10
owner = "OCamlPro";
···
13
13
sha256 = "sha256-IyvURw/6R0eKrnahV1fqLV0iIeypykrmxDbliECgbLc=";
14
14
};
15
15
16
16
-
minimumOCamlVersion = "4.02";
16
16
+
minimalOCamlVersion = "4.03";
17
17
18
18
buildInputs = [ cmdliner ];
19
19
+
propagatedBuildInputs = [ findlib ];
19
20
20
21
meta = with lib; {
21
22
homepage = "https://www.typerex.org/ocp-indent.html";