91 lines
3.2 KiB
Nix
91 lines
3.2 KiB
Nix
{
|
|
description = "haskell-template's description";
|
|
inputs = {
|
|
# To find a suitable nixpkgs hash, pick one from https://status.nixos.org/ (these are cached)
|
|
nixpkgs.url = "github:nixos/nixpkgs/abfd31179174133ab8131139d650297bf4da63b7";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
flake-utils.inputs.nixpkgs.follows = "nixpkgs";
|
|
flake-compat.url = "github:edolstra/flake-compat";
|
|
flake-compat.flake = false;
|
|
flake-compat.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
outputs = inputs:
|
|
let
|
|
# Function that produces Flake outputs for the given system.
|
|
outputsFor = system:
|
|
let
|
|
# Because: https://zimbatm.com/notes/1000-instances-of-nixpkgs
|
|
pkgs = inputs.nixpkgs.legacyPackages.${system};
|
|
inherit (pkgs.lib.trivial) pipe flip;
|
|
inherit (pkgs.lib.lists) optionals;
|
|
|
|
# Specify GHC version here. To get the appropriate value, run:
|
|
# nix-env -f "<nixpkgs>" -qaP -A haskell.compiler
|
|
hp = pkgs.haskellPackages; # Eg: pkgs.haskell.packages.ghc921;
|
|
|
|
# Specify your build/dev dependencies here.
|
|
shellDeps = with hp; [
|
|
cabal-fmt
|
|
cabal-install
|
|
ghcid
|
|
haskell-language-server
|
|
fourmolu
|
|
hlint
|
|
pkgs.nixpkgs-fmt
|
|
pkgs.treefmt
|
|
];
|
|
|
|
project = returnShellEnv:
|
|
hp.developPackage {
|
|
inherit returnShellEnv;
|
|
name = "haskell-template";
|
|
root = ./.;
|
|
withHoogle = false;
|
|
overrides = self: super: with pkgs.haskell.lib; {
|
|
# Use callCabal2nix to override Haskell dependencies here
|
|
# cf. https://tek.brick.do/K3VXJd8mEKO7
|
|
# Example:
|
|
# > NanoID = self.callCabal2nix "NanoID" inputs.NanoID { };
|
|
# Assumes that you have the 'NanoID' flake input defined.
|
|
};
|
|
modifier = drv:
|
|
let inherit (pkgs.haskell.lib) addBuildTools;
|
|
in
|
|
pipe drv
|
|
[
|
|
# Transform the Haskell derivation (`drv`) here.
|
|
(flip addBuildTools
|
|
(optionals returnShellEnv shellDeps))
|
|
];
|
|
};
|
|
in
|
|
{
|
|
# Used by `nix build ...`
|
|
packages = {
|
|
default = project false;
|
|
};
|
|
# Used by `nix run ...`
|
|
apps = {
|
|
default = {
|
|
type = "app";
|
|
program = "${inputs.self.packages.${system}.default}/bin/haskell-template";
|
|
};
|
|
};
|
|
# Used by `nix develop ...`
|
|
devShells = {
|
|
default = project true;
|
|
};
|
|
# For compatability with older Nix (eg in CI)
|
|
devShell = inputs.self.devShells.${system}.default;
|
|
defaultPackage = inputs.self.packages.${system}.default;
|
|
defaultApp = inputs.self.apps.${system}.default;
|
|
};
|
|
in
|
|
inputs.flake-utils.lib.eachDefaultSystem outputsFor
|
|
// {
|
|
# For hercules-CI support,
|
|
# https://docs.hercules-ci.com/hercules-ci/guides/upgrade-to-agent-0.9/#_upgrade_your_repositories
|
|
herculesCI.ciSystems = [ "x86_64-linux" ];
|
|
};
|
|
}
|