zetviel/flake.nix
Emil Lerch afea8dd24b
Some checks failed
Generic zig build / build (push) Failing after 10s
yolo
2025-08-15 16:20:57 -07:00

25 lines
602 B
Nix

{
description = "Good basic flake template";
inputs = {
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
systempkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = systempkgs.mkShell {
buildInputs = with systempkgs; [
notmuch
gmime3
glibc
glibc_multi
pkg-config
];
};
}
);
}