generated from vst/haskell-template-hebele
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.nix
147 lines (120 loc) · 3.63 KB
/
default.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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{ sources ? import ./nix/sources.nix
, compiler ? "default"
, system ? builtins.currentSystem
, ...
}:
let
##################
## LOAD NIXPKGS ##
##################
## Import nixpkgs pinned by niv:
pkgs = import sources.nixpkgs { inherit system; };
##################
## LOAD HELPERS ##
##################
## Load the YAML reader:
readYAML = pkgs.callPackage ./nix/lib/read-yaml.nix { };
## Load Haskell package factory:
mkHaskell = pkgs.callPackage ./nix/lib/mk-haskell.nix { };
## Load Haskell application factory:
mkHaskellApp = pkgs.callPackage ./nix/lib/mk-haskell-app.nix { };
## Load Docker image factory for Haskell application:
mkHaskellDocker = pkgs.callPackage ./nix/lib/mk-haskell-docker.nix { };
###########################
## ESSENTIAL INFORMATION ##
###########################
## Get the main Haskell package specification:
packageSpec = readYAML (thisHaskellPackages.main.path + "/package.yaml");
#############
## HASKELL ##
#############
## Get Haskell packages in the project:
thisHaskellPackages = {
main = {
name = packageSpec.name;
path = ./.;
};
subs = [ ];
};
## Get Haskell packages in the project as a list:
thisHaskellPackagesAll = [ thisHaskellPackages.main ] ++ thisHaskellPackages.subs;
## Get base Haskell package set:
baseHaskell = if compiler == "default" then pkgs.haskellPackages else pkgs.haskell.packages.${compiler};
## Get this Haskell package set:
thisHaskell = mkHaskell {
haskell = baseHaskell;
packages = thisHaskellPackagesAll;
overrides = self: super: { };
};
###########
## SHELL ##
###########
## Prepare dev-test-build script:
dev-test-build = pkgs.writeShellApplication {
name = "dev-test-build";
text = builtins.readFile ./nix/dev-test-build.sh;
runtimeInputs = [ pkgs.bash pkgs.bc pkgs.moreutils ];
};
## Prepare Nix shell:
thisShell = thisHaskell.shellFor {
## Define packages for the shell:
packages = p: builtins.map (x: p.${x.name}) thisHaskellPackagesAll;
## Enable Hoogle:
withHoogle = false;
## Build inputs for development shell:
buildInputs = [
## Haskell related build inputs:
thisHaskell.apply-refact
thisHaskell.cabal-fmt
thisHaskell.cabal-install
thisHaskell.cabal2nix
thisHaskell.fourmolu
thisHaskell.haskell-language-server
thisHaskell.hlint
thisHaskell.hpack
thisHaskell.weeder
## Build inputs for testing requirements:
pkgs.curl
pkgs.openssh
## Build inputs for various development requirements:
pkgs.docker-client
pkgs.git
pkgs.nil
pkgs.nixpkgs-fmt
pkgs.nodePackages.prettier
pkgs.nodejs_20
pkgs.upx
## Our custom scripts:
dev-test-build
];
## Include CA certificates for testing under pure shell:
SSL_CERT_FILE = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt";
NODE_EXTRA_CA_CERTS = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt";
};
#################
## APPLICATION ##
#################
## Get the installable application (only static executable):
thisApp = mkHaskellApp {
drv = thisHaskell.${thisHaskellPackages.main.name};
binPaths = [
pkgs.bashInteractive ## Added for bash-based CLI option completions
];
nativeBuildInputs = [
pkgs.curl ## Required by the application tests
pkgs.openssh ## Required by the application tests
];
};
############
## DOCKER ##
############
thisDocker = mkHaskellDocker {
app = thisApp;
repository = thisHaskell.${thisHaskellPackages.main.name};
};
in
{
shell = thisShell;
app = thisApp;
docker = thisDocker;
}