-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflake.nix
65 lines (62 loc) · 1.7 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
description = "Solutions to ProjectEuler problems in OCaml";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
ocaml-overlays.url = "github:nix-ocaml/nix-overlays";
ocaml-overlays.inputs.nixpkgs.follows = "nixpkgs";
};
outputs =
{
self,
flake-utils,
nixpkgs,
ocaml-overlays,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [ ocaml-overlays.overlays.default ];
};
in
with pkgs;
rec {
devShells.default = mkShell {
inputsFrom = [ packages.default ];
buildInputs = lib.optional stdenv.isLinux inotify-tools ++ [
ocamlPackages.merlin
ocamlformat
ocamlPackages.ocaml-lsp
ocamlPackages.ocp-indent
ocamlPackages.utop
];
};
packages.default = ocamlPackages.buildDunePackage rec {
pname = "euler";
version = "0.5.0";
useDune2 = true;
src = nix-gitignore.gitignoreFilterSource lib.cleanSourceFilter [ ] ./.;
postPatch = ''
patchShebangs sol/module-list.pl
'';
buildInputs = with ocamlPackages; [
bignum
cmdliner
core
core_bench
delimited_parsing
expect_test_helpers_core
perl
re
];
checkInputs = [ shellcheck ];
passthru.checkInputs = checkInputs;
meta = {
homepage = "https://github.com/bcc32/projecteuler-ocaml";
};
};
}
);
}