Add nix shell for developing
All checks were successful
continuous-integration/drone/pr Build is passing
All checks were successful
continuous-integration/drone/pr Build is passing
This commit is contained in:
parent
3dd9465528
commit
0b6ee1cc2f
28
shell.nix
Executable file
28
shell.nix
Executable 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
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue
Block a user