File: shell.nix

package info (click to toggle)
tex-fmt 0.5.6%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,024 kB
  • sloc: sh: 127; python: 73; javascript: 43; makefile: 24
file content (32 lines) | stat: -rw-r--r-- 621 bytes parent folder | download
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
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
  inputsFrom = [(pkgs.callPackage ./default.nix {})];
  buildInputs = let
    python = pkgs.python3.withPackages (ps:
      with ps; [
        grip
        matplotlib
        pillow
      ]);
  in [
    pkgs.alejandra
    pkgs.bacon
    pkgs.binaryen
    pkgs.cacert
    pkgs.cargo-edit
    pkgs.cargo-flamegraph
    pkgs.cargo-shear
    pkgs.clippy
    pkgs.diff-so-fancy
    pkgs.gh
    pkgs.hyperfine
    pkgs.lld
    pkgs.poppler_utils
    pkgs.ripgrep
    pkgs.rustfmt
    pkgs.shellcheck
    pkgs.texlive.combined.scheme-full
    pkgs.wasm-bindgen-cli
    python
  ];
}