aoc2025/flake.nix

21 lines
415 B
Nix
Raw Permalink Normal View History

2025-12-01 01:52:19 +01:00
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{ nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShell = pkgs.mkShell {
buildInputs = [ pkgs.scala-cli ];
};
}
);
}