-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
58 lines (55 loc) · 1.76 KB
/
flake.nix
File metadata and controls
58 lines (55 loc) · 1.76 KB
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
{
inputs = {
opam-nix.url = "github:tweag/opam-nix";
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.follows = "opam-nix/nixpkgs";
opam-repository = {
url = "github:ocaml/opam-repository";
flake = false;
};
};
outputs =
{
self,
flake-utils,
opam-nix,
nixpkgs,
opam-repository,
}@inputs:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
on = opam-nix.lib.${system};
localPackagesQuery = builtins.mapAttrs (_: pkgs.lib.last) (on.listRepo (on.makeOpamRepo ./.));
devPackagesQuery = {
ocaml-lsp-server = "*";
ocamlformat = "*";
};
query = devPackagesQuery // {
ocaml-base-compiler = "*";
};
scope = on.buildOpamProject' { repos = [ "${opam-repository}" ]; } ./. query;
overlay = final: prev: {
# You can add overrides here
};
scope' = scope.overrideScope overlay;
# Packages from devPackagesQuery
devPackages = builtins.attrValues (pkgs.lib.getAttrs (builtins.attrNames devPackagesQuery) scope');
# Packages in this workspace
packages = pkgs.lib.getAttrs (builtins.attrNames localPackagesQuery) scope';
in
{
legacyPackages = scope';
inherit packages;
## If you want to have a "default" package which will be built with just `nix build`, do this instead of `inherit packages;`:
# packages = packages // { default = packages.<your default package>; };
devShells.default = pkgs.mkShell {
inputsFrom = builtins.attrValues packages;
buildInputs = devPackages ++ [
pkgs.rust-analyzer
];
};
}
);
}