Add a default.nix for nix-build

This commit is contained in:
2024-09-12 19:49:58 +02:00
parent 2628822373
commit 1fe7714c6b
4 changed files with 16 additions and 10 deletions

9
byg/nix/common.nix Normal file
View File

@@ -0,0 +1,9 @@
let
sources = import ./sources.nix;
pkgs = import sources.nixpkgs {};
haskell = pkgs.haskell.packages.ghc910;
in
{
pkgs = pkgs;
haskell = haskell;
}