Skip to content

Commit d15a4a9

Browse files
authored
Merge pull request #70 from mattjbray/dave/add-flake
Add simple flake for opam/ocamlformat
2 parents e2b8cb8 + 3fe5efc commit d15a4a9

File tree

2 files changed

+113
-0
lines changed

2 files changed

+113
-0
lines changed

flake.lock

+76
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
inputs = {
3+
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
4+
5+
#ocamlformat 0.22.4 is a bit old, so is only in older versions of nixpkgs
6+
nixpkgs2305.url = "nixpkgs/nixos-23.05";
7+
8+
flake-utils.url = "github:numtide/flake-utils";
9+
};
10+
11+
outputs = { self, nixpkgs, nixpkgs2305, flake-utils }@attrs:
12+
flake-utils.lib.eachDefaultSystem (system:
13+
let
14+
pkgs = nixpkgs.legacyPackages.${system};
15+
pkgs2305 = nixpkgs2305.legacyPackages.${system};
16+
in
17+
{
18+
# for use by nix fmt
19+
formatter = pkgs.nixpkgs-fmt;
20+
21+
devShells.default =
22+
pkgs.mkShell {
23+
buildInputs =
24+
(if pkgs.stdenv.isDarwin then
25+
(with pkgs.darwin.apple_sdk.frameworks; [ CoreServices Foundation ])
26+
27+
else
28+
[ pkgs.inotify-tools ]) ++ [
29+
pkgs.opam
30+
pkgs2305.ocamlformat_0_20_1
31+
#pkgs.pkg-config
32+
]
33+
;
34+
};
35+
36+
});
37+
}

0 commit comments

Comments
 (0)