format nix
This commit is contained in:
parent
6dd9b64e37
commit
de53a26819
69 changed files with 1585 additions and 1400 deletions
|
|
@ -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!"
|
||||
'';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue