fsfe-website/shell.nix

29 lines
505 B
Nix
Raw Normal View History

2024-08-30 15:56:42 +00:00
{
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
];
}