We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0b5526 commit 7f9c815Copy full SHA for 7f9c815
1 file changed
flake.nix
@@ -1,7 +1,7 @@
1
{
2
description = "baboon build environment";
3
4
- inputs.nixpkgs.url = "github:NixOS/nixpkgs/24.05";
+ inputs.nixpkgs.url = "github:NixOS/nixpkgs/25.11";
5
6
inputs.flake-utils.url = "github:numtide/flake-utils";
7
@@ -17,7 +17,10 @@
17
flake-utils.lib.eachDefaultSystem (
18
system:
19
let
20
- pkgs = nixpkgs.legacyPackages.${system};
+ pkgs = import nixpkgs {
21
+ inherit system;
22
+ config.allowUnfree = true;
23
+ };
24
in
25
26
packages = rec {
@@ -54,12 +57,12 @@
54
57
nativeBuildInputs = with pkgs.buildPackages; [
55
58
ncurses
56
59
- graalvm-ce
60
+ graalvmPackages.graalvm-ce
61
coursier
62
ammonite_2_13
63
pkgs.buildPackages.sbt
64
- dotnet-sdk_6
65
+ dotnet-sdk_9
66
mono
67
msbuild
68
dotnetPackages.NUnitConsole
0 commit comments