mirror of
https://github.com/dolphin-emu/www.git
synced 2024-11-23 17:39:41 +00:00
26 lines
362 B
Nix
26 lines
362 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = (with pkgs; [
|
|
python39Full
|
|
|
|
gettext
|
|
transifex-client
|
|
|
|
# CPython extension common build deps.
|
|
git
|
|
openssl
|
|
libjpeg
|
|
pkg-config
|
|
stdenv
|
|
zlib
|
|
postgresql
|
|
libffi
|
|
]) ++ (with pkgs.python39Packages; [
|
|
setuptools
|
|
virtualenv
|
|
pip
|
|
Fabric
|
|
]);
|
|
}
|