taler-www

Main taler.net website
Log | Files | Refs | Submodules | README | LICENSE

shell.nix (382B)


      1 {
      2   pkgs ? import <nixpkgs> { },
      3 }:
      4 pkgs.mkShell {
      5    packages = with pkgs; [
      6      python312Packages.babel
      7      python312Packages.beautifulsoup4
      8      python312Packages.chardet
      9      python312Packages.distutils
     10      python312Packages.idna
     11      python312Packages.jinja2
     12      python312Packages.lxml
     13      python312Packages.ruamel-yaml
     14      nodejs
     15      pnpm
     16      gettext
     17      git
     18    ];
     19 }