Initial commit

main
Tristan Daniël Maat 2021-12-03 02:02:43 +00:00
commit 90e4683d85
Signed by: tlater
GPG Key ID: 49670FD774E43268
3 changed files with 37 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.hi
*.o
/1/depthcounter

24
flake.lock Normal file
View File

@ -0,0 +1,24 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1636552551,
"narHash": "sha256-k7Hq/bvUnRlAfFjPGuw3FsSqqspQdRHsCHpgadw6UkQ=",
"path": "/nix/store/79dixgv7ckd5zf325r8v3pjpfqqc553l-source",
"rev": "9e86f5f7a19db6da2445f07bafa6694b556f9c6d",
"type": "path"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

10
flake.nix Normal file
View File

@ -0,0 +1,10 @@
{
outputs = { nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
devShell."${system}" =
pkgs.mkShell { buildInputs = with pkgs; [ ghc stylish-haskell ]; };
};
}