Add initial generator

This commit is contained in:
2024-09-11 22:32:14 +02:00
commit 2628822373
8 changed files with 921 additions and 0 deletions

12
byg/shell.nix Normal file
View File

@@ -0,0 +1,12 @@
let
sources = import ./nix/sources.nix;
pkgs = import sources.nixpkgs {};
haskell = pkgs.haskell.packages.ghc910;
in
pkgs.stdenv.mkDerivation {
name = "byg";
buildInputs = with pkgs; [
haskell.ghc
cabal-install
];
}