-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathshell.nix
45 lines (40 loc) · 872 Bytes
/
shell.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
{ sources ? import ./nix/sources.nix
, pkgs ? import sources.nixpkgs {
overlays = [ ];
config = { };
}
}:
with pkgs;
let
specs = callPackage ./default.nix {};
in {
shell = mkShell {
nativeBuildInputs = [
specs.fls-shake
specs.agdaWithDeps
specs.latex
python310
pkgs.glibcLocales
];
shellHook = ''
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export LOCALE_ARCHIVE=${pkgs.glibcLocales}/lib/locale/locale-archive
'';
};
run = {
shell = mkShell {
nativeBuildInputs = [
specs.fls-shake
specs.agdaWithDeps
cabal-install
pkgs.glibcLocales
];
shellHook = ''
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export LOCALE_ARCHIVE=${pkgs.glibcLocales}/lib/locale/locale-archive
'';
};
};
}