Skip to content

Commit fe99404

Browse files
committed
feature(easy-dotnet): Include nuget package
1 parent 8a5c008 commit fe99404

2 files changed

Lines changed: 45 additions & 12 deletions

File tree

]

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
pkgs,
3+
stable,
4+
lib,
5+
...
6+
}: let
7+
easyDotnet = pkgs.buildDotnetGlobalTool {
8+
pname = "EasyDotnet";
9+
version = "1.0.28";
10+
nugetSha256 = "sha256-pVtueIzBjthNm3tmxl1ld/yxdCW0Swj5r/pOVoj6tuc=";
11+
};
12+
in
13+
with pkgs; [
14+
easyDotnet
15+
dotnetPackages.Paket
16+
lldb
17+
netcoredbg
18+
stable.roslyn-ls
19+
vscode-js-debug
20+
yazi
21+
ripgrep
22+
fd
23+
zoxide
24+
gh
25+
]

lib/dependencies.nix

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,23 @@
22
pkgs,
33
stable,
44
...
5-
}:
6-
with pkgs; [
7-
lldb
8-
netcoredbg
9-
stable.roslyn-ls
10-
vscode-js-debug
11-
yazi
12-
ripgrep
13-
fd
14-
zoxide
15-
gh
16-
]
5+
}: let
6+
easyDotnet = pkgs.buildDotnetGlobalTool {
7+
pname = "EasyDotnet";
8+
version = "1.0.28";
9+
nugetSha256 = "sha256-pVtueIzBjthNm3tmxl1ld/yxdCW0Swj5r/pOVoj6tuc=";
10+
executables = ["dotnet-easydotnet"];
11+
};
12+
in
13+
with pkgs; [
14+
easyDotnet
15+
lldb
16+
netcoredbg
17+
stable.roslyn-ls
18+
vscode-js-debug
19+
yazi
20+
ripgrep
21+
fd
22+
zoxide
23+
gh
24+
]

0 commit comments

Comments
 (0)