Initial commit
This commit is contained in:
17
flake.nix
Normal file
17
flake.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/master";
|
||||
|
||||
outputs = { self, nixpkgs }:
|
||||
let
|
||||
pkgs = import nixpkgs { system = "x86_64-linux"; };
|
||||
in
|
||||
{
|
||||
devShell.x86_64-linux =
|
||||
let
|
||||
libs = p: [ p.split p.HFuse p.aeson p.utf8-string ];
|
||||
in
|
||||
pkgs.mkShell {
|
||||
nativeBuildInputs = with pkgs; [ (haskellPackages.ghcWithPackages libs) ];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user