Advent-of-Code-Aggregator/2024/flake.nix

30 lines
612 B
Nix
Raw Permalink Normal View History

2024-12-03 23:46:09 +01:00
{
description = "Zeus AoC 2024";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem(system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShell = pkgs.mkShell {
name = "Advent of Code 2024";
packages = [
pkgs.hyperfine
pkgs.postgresql_14
pkgs.ldc
pkgs.go
2024-12-05 00:09:19 +01:00
pkgs.dub
pkgs.zig
2024-12-03 23:46:09 +01:00
];
2024-12-05 00:09:19 +01:00
2024-12-03 23:46:09 +01:00
};
}
);
}