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
fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
dune-private-libs
/
default.nix
blob
ad60aa1c75ecd0cdc5cb3b4ec01cfbdcef091849
1
{
2
lib,
3
buildDunePackage,
4
dune_3,
5
stdune,
6
}:
7
8
buildDunePackage rec {
9
pname = "dune-private-libs";
10
11
duneVersion = "3";
12
13
inherit (dune_3) src version;
14
15
minimalOCamlVersion = "4.08";
16
17
dontAddPrefix = true;
18
19
propagatedBuildInputs = [ stdune ];
20
21
preBuild = ''
22
rm -r vendor/csexp
23
'';
24
25
meta = with lib; {
26
description = "Private libraries of Dune";
27
maintainers = [ ];
28
license = licenses.mit;
29
};
30
}