format nix

This commit is contained in:
Aaron Honeycutt 2025-09-18 17:24:56 -06:00
parent 6dd9b64e37
commit de53a26819
69 changed files with 1585 additions and 1400 deletions

View file

@ -1,21 +1,20 @@
{ pkgs ? import <nixpkgs> {} }:
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
# Rust
cargo
rustc
pkgs.mkShell {
packages = with pkgs; [
# Rust
cargo
rustc
# System
pkg-config
util-linux
];
# System
pkg-config
util-linux
];
#inputsFrom = with pkgs; [ bat ];
#inputsFrom = with pkgs; [ bat ];
RUST_BACKTRACE = 1;
RUST_BACKTRACE = 1;
shellHook = ''
echo "Ready to make some Rust!"
'';
shellHook = ''
echo "Ready to make some Rust!"
'';
}

View file

@ -1,30 +1,30 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
chrpath
cpio
debianutils
diffstat
file
gawk
git
glibcLocales
gnat
gnumake
iputils
lz4
# Python 3.12 and packages for it
python312
python312Packages.jinja2
python312Packages.gitpython
python312Packages.pexpect
python312Packages.pip
python312Packages.subunit
socat
texinfo
unzip
wget
xz
zstd
];
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
chrpath
cpio
debianutils
diffstat
file
gawk
git
glibcLocales
gnat
gnumake
iputils
lz4
# Python 3.12 and packages for it
python312
python312Packages.jinja2
python312Packages.gitpython
python312Packages.pexpect
python312Packages.pip
python312Packages.subunit
socat
texinfo
unzip
wget
xz
zstd
];
}