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
/
stdune
/
default.nix
blob
bc880cf2125f55ed59e80446163bed018870c209
1
{
2
buildDunePackage,
3
dune_3,
4
dyn,
5
ordering,
6
csexp,
7
}:
8
9
buildDunePackage {
10
pname = "stdune";
11
inherit (dune_3) version src;
12
duneVersion = "3";
13
14
dontAddPrefix = true;
15
16
propagatedBuildInputs = [
17
dyn
18
ordering
19
csexp
20
];
21
22
preBuild = ''
23
rm -r vendor/csexp
24
'';
25
26
meta = dune_3.meta // {
27
description = "Dune's unstable standard library";
28
};
29
}