1
0
aoc23/flake.nix
xeals 52371f9e13
Remove build-zig-package
Turns out this actually is already implemented upstream.
2023-11-30 12:52:45 +11:00

34 lines
860 B
Nix

{
description = "Advent of Code 2023";
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 = import nixpkgs { inherit system; };
zig = pkgs.zig_0_11;
in
{
devShells.default = pkgs.mkShellNoCC {
buildInputs = [ zig pkgs.zls ];
};
packages.default = pkgs.stdenv.mkDerivation {
name = "aoc23";
src = pkgs.nix-gitignore.gitignoreSource [ ] ./.;
nativeBuildInputs = [ zig.hook ];
meta = {
description = "Advent of Code 2023";
homepage = "https://git.xeal.me/xeals/aoc23";
inherit (zig.meta) platforms;
};
};
});
}