blob: 9ee23163e9666c6eef897354bd9f1bfb3907cbcf (
plain) (
blame)
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
|
{
description = "Relesoft Radio";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/release-25.11";
};
outputs =
{ self, nixpkgs }:
let
supportedSystems = [
"x86_64-linux"
"aarch64-linux"
];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; });
in
{
devShells = forAllSystems (
system:
let
pkgs = nixpkgsFor.${system};
mytex = pkgs.texliveMedium.withPackages (ps: [
ps.adjustbox
ps.alphalph
ps.changepage
ps.enumitem
ps.etoc
ps.fontaxes
ps.hanging
ps.ltablex
ps.multirow
ps.newunicodechar
ps.ninecolors
ps.roboto
ps.sectsty
ps.stackengine
ps.svg
ps.tabularray
ps.tocloft
ps.transparent
ps.varwidth
ps.xltabular
]);
in
{
default = pkgs.mkShell {
buildInputs = with pkgs; [
html-tidy
biome
gnumake
mytex
];
};
}
);
};
}
|