repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
ocamlc-loc
/
default.nix
blob
47b1c6ffe75c0ddc9fd3930cf5bd42fe40b532d6
1
{
2
lib,
3
buildDunePackage,
4
dune_3,
5
dyn,
6
}:
7
8
buildDunePackage {
9
pname = "ocamlc-loc";
10
inherit (dune_3) src version;
11
duneVersion = "3";
12
13
dontAddPrefix = true;
14
15
preBuild = ''
16
rm -rf vendor/csexp
17
rm -rf vendor/pp
18
'';
19
20
minimalOCamlVersion = "4.08";
21
22
propagatedBuildInputs = [ dyn ];
23
24
meta = with lib; {
25
description = "Parse ocaml compiler output into structured form";
26
maintainers = [ maintainers.ulrikstrid ];
27
license = licenses.mit;
28
};
29
}