-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
61 lines (54 loc) · 1.57 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
description = "LaTeX style and class files used in DSC courses @ UCSD.";
inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-22.11;
outputs = { self, nixpkgs }:
let
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
forAllSystems = f: nixpkgs.lib.genAttrs supportedSystems (system: f system);
in
{
devShell = forAllSystems (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
pkgs.mkShell {
buildInputs = [
pkgs.mkdocs
# latex environment
(
pkgs.texlive.combine {
inherit (pkgs.texlive)
scheme-full;
}
)
# python environment
(
pkgs.python3.withPackages (ps: [
ps.mkdocs-material
]
)
)
];
shellHook = ''
# add latex sty and cls files to search path
export TEXINPUTS=$(pwd)/src:
'';
}
);
defaultPackage = forAllSystems (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
pkgs.stdenv.mkDerivation rec {
name = "dsctex";
src = ./.;
installPhase = ''
mkdir -p $out
cp src/* $out/
'';
pname = name;
tlType = "run";
}
);
};
}