Add nix shell for developing
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
Darragh Elliott 2024-08-30 15:56:42 +00:00
parent 3dd9465528
commit 0b6ee1cc2f

28
shell.nix Executable file
View File

@ -0,0 +1,28 @@
{
pkgs ? import <nixpkgs> {
config = { };
overlays = [ ];
},
}:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
# Needed for standard build
coreutils
findutils
gnused
gnugrep
gnumake
rsync
libxslt
libxml2
iconv
wget
# Needed for the site index script
python312
python312Packages.beautifulsoup4
# Needed only for non dev builds. IE --build-env "fsfe.org" or such
lessc
# Needed for translation status script
perl
];
}