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
icinga2: Pin boost version (#374998)
[NixPkgs.git]
/
pkgs
/
build-support
/
dotnet
/
dotnetenv
/
default.nix
blob
5468a4916cae37c06d6bc8b88390944f9f1dd499
1
{
2
lib,
3
stdenv,
4
dotnetfx,
5
}:
6
7
let
8
dotnetenv = {
9
buildSolution = import ./build-solution.nix {
10
inherit lib stdenv;
11
dotnetfx = dotnetfx.pkg;
12
};
13
14
buildWrapper = import ./wrapper.nix {
15
inherit dotnetenv;
16
};
17
18
inherit (dotnetfx)
19
assembly20Path
20
wcfPath
21
referenceAssembly30Path
22
referenceAssembly35Path
23
;
24
};
25
in
26
dotnetenv