Skip to content

Commit 7f9c815

Browse files
authored
nixpkgs 25.11 (#599)
1 parent a0b5526 commit 7f9c815

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

flake.nix

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
description = "baboon build environment";
33

4-
inputs.nixpkgs.url = "github:NixOS/nixpkgs/24.05";
4+
inputs.nixpkgs.url = "github:NixOS/nixpkgs/25.11";
55

66
inputs.flake-utils.url = "github:numtide/flake-utils";
77

@@ -17,7 +17,10 @@
1717
flake-utils.lib.eachDefaultSystem (
1818
system:
1919
let
20-
pkgs = nixpkgs.legacyPackages.${system};
20+
pkgs = import nixpkgs {
21+
inherit system;
22+
config.allowUnfree = true;
23+
};
2124
in
2225
{
2326
packages = rec {
@@ -54,12 +57,12 @@
5457
nativeBuildInputs = with pkgs.buildPackages; [
5558
ncurses
5659

57-
graalvm-ce
60+
graalvmPackages.graalvm-ce
5861
coursier
5962
ammonite_2_13
6063
pkgs.buildPackages.sbt
6164

62-
dotnet-sdk_6
65+
dotnet-sdk_9
6366
mono
6467
msbuild
6568
dotnetPackages.NUnitConsole

0 commit comments

Comments
 (0)