-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
65 lines (60 loc) · 1.95 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 = "Advent of Code solutions";
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 = [ devShells.ocaml devShells.ruby ];
buildInputs = [ graphviz ];
};
devShells.ocaml = mkShell {
inputsFrom = [ packages.default ];
buildInputs = lib.optional stdenv.isLinux inotify-tools ++ [
ocamlPackages.merlin
ocamlformat
ocamlPackages.ocp-indent
ocamlPackages.utop
];
};
devShells.ruby = let
gems = bundlerEnv {
name = "env";
gemdir = ./.;
};
in mkShell { buildInputs = [ gems gems.wrappedRuby bundix ]; };
packages.default = ocamlPackages.buildDunePackage rec {
pname = "aoc";
version = "0.1.0";
useDune2 = true;
src = ./.;
buildInputs = with ocamlPackages;
[
angstrom
async
bignum
cmdliner
core
core_bench
delimited_parsing
expect_test_helpers_async
re
topological_sort
yojson
] ++ lib.optionals (!stdenv.isDarwin) [ z3 ];
nativeBuildInputs = lib.optionals (!stdenv.isDarwin) [ z3 ];
# TODO: ocamlPackages.z3 build is currently broken on Darwin
meta = { homepage = "https://github.com/bcc32/advent-of-code"; };
};
});
}