Skip to content
Snippets Groups Projects
Verified Commit 80de70c2 authored by aalbert's avatar aalbert
Browse files

add basic flake

parent 523eb66d
No related branches found
No related tags found
No related merge requests found
{
"nodes": {
"flake-utils": {
"locked": {
"lastModified": 1667395993,
"narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1668417584,
"narHash": "sha256-yeuEyxKPwsm5fIHN49L/syn9g5coxnPp3GsVquhrv5A=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "013fcdd106823416918004bb684c3c186d3c460f",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixos-unstable",
"type": "indirect"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}
{
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "nixpkgs/nixos-unstable";
};
outputs = { self, flake-utils, nixpkgs }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
ocamlPackages = pkgs.ocaml-ng.ocamlPackages_4_13;
dolmen = ocamlPackages.dolmen.overrideAttrs (old: {
src = pkgs.fetchurl {
url =
"https://github.com/Gbury/dolmen/releases/download/v0.7/dolmen-0.7.tbz";
sha256 = "sha256-/yiJ+p1GfVtNh65PgZpkNYcV9FfMYia0VUY8L81Ksq8=";
};
});
in rec {
packages = { };
devShells.default = pkgs.mkShell {
name = "logIA-dev";
packages = with ocamlPackages; [
ocaml
findlib
dune_2
ocaml-lsp
dolmen
];
};
});
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment