bump deps

This commit is contained in:
2026-07-04 14:46:27 -06:00
parent 23aef00097
commit 06f9ebe51b
7 changed files with 69 additions and 11 deletions
+29
View File
@@ -0,0 +1,29 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs = { self, nixpkgs, ... }@inputs:
let
supportedSystems = [
"aarch64-darwin" "aarch64-linux"
"x86_64-darwin" "x86_64-linux"
];
each-system = f: nixpkgs.lib.genAttrs supportedSystems (system: f rec {
pkgs = import nixpkgs {
inherit system;
};
inherit (pkgs) lib;
inherit system;
});
in {
devShells = each-system ({ pkgs, system, ... }: {
default = pkgs.mkShell {
packages = with pkgs; [
cabal-install ghc stack
];
};
});
};
}