Initial commit

This commit is contained in:
Vojtěch Káně
2021-09-23 12:54:42 +02:00
commit c4026d5b94
3 changed files with 275 additions and 0 deletions

17
flake.nix Normal file
View 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) ];
};
};
}