feat: add devshell.nix

This commit is contained in:
Martin Wimpress 2024-05-02 13:30:28 +01:00 committed by Martin Wimpress
parent e4691ff6cd
commit f3fff84952
1 changed files with 51 additions and 0 deletions

51
devshell.nix Normal file
View File

@ -0,0 +1,51 @@
{
mkShell,
cdrtools,
curl,
lsb-release,
git,
gnugrep,
gnused,
jq,
nixpkgs-fmt,
procps,
python3,
qemu,
socat,
swtpm,
unzip,
usbutils,
util-linux,
wget,
xdg-user-dirs,
xrandr,
zsync,
}:
mkShell {
strictDeps = true;
nativeBuildInputs = [
cdrtools
curl
lsb-release
git
gnugrep
gnused
jq
nixpkgs-fmt
procps
python3
qemu
socat
swtpm
unzip
usbutils
util-linux
wget
xdg-user-dirs
xrandr
zsync
];
buildInputs = [];
}