This commit is contained in:
bluepython508
2023-12-01 17:51:59 +00:00
commit 89ded18386
13 changed files with 350 additions and 0 deletions

7
flake.nix Normal file
View File

@@ -0,0 +1,7 @@
{
outputs = { self, nixpkgs, systems }: {
devShells = nixpkgs.lib.genAttrs (import systems) (system: {
default = nixpkgs.legacyPackages.${system}.beam.packages.erlang_26.callPackage ./shell.nix {};
});
};
}