-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
31 lines (31 loc) · 1.13 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
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
haskell-flake.url = "github:srid/haskell-flake";
fortran-src = {
url = "github:camfort/fortran-src";
flake = false;
};
};
outputs = inputs@{ self, nixpkgs, flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = nixpkgs.lib.systems.flakeExposed;
imports = [ inputs.haskell-flake.flakeModule ];
perSystem = { self', pkgs, ... }: {
haskellProjects.default = {
# packages.example.root = ./.; # This value is detected based on .cabal files
overrides = self: super: {
fortran-src = self.callCabal2nix "fortran-src" inputs.fortran-src {};
};
# devShell = {
# enable = true; # Enabled by default
# tools = hp: { fourmolu = hp.fourmolu; ghcid = null; };
# hlsCheck.enable = true;
# };
};
# haskell-flake doesn't set the default package, but you can do it here.
packages.default = self'.packages.fortran-src-extras;
};
};
}