blob: 2a828899cdb3c14b434641627ca161d3122b01cc (
plain)
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
|
{
description = "Aria Shrimpton dissertation";
inputs = {
crane.url = "github:ipetkov/crane";
crane.inputs.nixpkgs.follows = "nixpkgs";
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
};
outputs = inputs @ {
self,
nixpkgs,
crane,
rust-overlay,
}: let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
overlays = [(import rust-overlay)];
};
tex-env = pkgs.callPackage ./nix/tex-env.nix inputs;
racket-env = pkgs.callPackage ./nix/racket-env.nix inputs;
candelabra = pkgs.callPackage ./nix/candelabra.nix inputs;
in rec {
devShells.${system}.default = pkgs.mkShell {
buildInputs = [
tex-env
racket-env
pkgs.just # command runner
pkgs.biber # bibliography backend
pkgs.inotify-tools
pkgs.livebook # datavis
# god is dead
pkgs.nodejs
pkgs.nodePackages.vega-cli
pkgs.nodePackages.vega-lite
];
};
packages.${system}.default = candelabra;
nixosConfigurations.default = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {
inherit inputs tex-env racket-env candelabra;
};
modules = [./nix/configuration.nix];
};
};
}
|