-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
43 lines (38 loc) · 1.1 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
32
33
34
35
36
37
38
39
40
41
42
43
{
description = "INSA Lyon, TP 3IF";
inputs = {
nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable;
flake-utils.url = github:numtide/flake-utils;
};
outputs = { self, nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
pythonPackages = pkgs.python311Packages;
in
{
devShells.default = pkgs.mkShell {
# packages needed to build the environment.
nativeBuildInputs = with pkgs; [
# LaTeX
pkgs.texlive.combined.scheme-full
pkgs.biber
pkgs.gnumake
# Adding Java for LTeX spell checker (vscode extension)
pkgs.openjdk
];
# package needed at build and runtime.
buildInputs = with pkgs; [
# C
pkgs.gcc
pkgs.gnumake
];
# environment variables.
shellHook = ''
export JAVA_HOME=${pkgs.openjdk11}/lib/openjdk
export JAVA_OPTS="-Xms64m -Xmx512m"
'';
};
}
);
}