tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.arg-complete: init at 0.2.1
Vincent Laporte
1 year ago
de1b2782
451b0d33
+33
2 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
arg-complete
default.nix
top-level
ocaml-packages.nix
+31
pkgs/development/ocaml-modules/arg-complete/default.nix
reviewed
···
1
1
+
{
2
2
+
lib,
3
3
+
fetchurl,
4
4
+
ocaml,
5
5
+
buildDunePackage,
6
6
+
cppo,
7
7
+
ounit2,
8
8
+
}:
9
9
+
10
10
+
buildDunePackage rec {
11
11
+
pname = "arg-complete";
12
12
+
version = "0.2.1";
13
13
+
14
14
+
src = fetchurl {
15
15
+
url = "https://github.com/sim642/ocaml-arg-complete/releases/download/${version}/arg-complete-${version}.tbz";
16
16
+
hash = "sha256-SZvLaeeqY3j2LUvqxGs0Vw57JnnpdvAk1jnE3pk27QU=";
17
17
+
};
18
18
+
19
19
+
nativeBuildInputs = [ cppo ];
20
20
+
21
21
+
doCheck = lib.versionAtLeast ocaml.version "4.08";
22
22
+
checkInputs = [ ounit2 ];
23
23
+
24
24
+
meta = {
25
25
+
description = "Bash completion support for OCaml Stdlib.Arg";
26
26
+
homepage = "https://sim642.github.io/ocaml-arg-complete/";
27
27
+
changelog = "https://raw.githubusercontent.com/sim642/ocaml-arg-complete/refs/tags/${version}/CHANGELOG.md";
28
28
+
license = lib.licenses.mit;
29
29
+
maintainers = [ lib.maintainers.vbgl ];
30
30
+
};
31
31
+
}
+2
pkgs/top-level/ocaml-packages.nix
reviewed
···
38
38
39
39
apron = callPackage ../development/ocaml-modules/apron { };
40
40
41
41
+
arg-complete = callPackage ../development/ocaml-modules/arg-complete { };
42
42
+
41
43
arp = callPackage ../development/ocaml-modules/arp { };
42
44
43
45
asai = callPackage ../development/ocaml-modules/asai { };