mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-02-05 03:34:15 +00:00
24 lines
335 B
Nix
24 lines
335 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
pkgs.mkShell rec {
|
||
|
nativeBuildInputs = with pkgs; [
|
||
|
makeWrapper
|
||
|
SDL2
|
||
|
freetype
|
||
|
fontconfig
|
||
|
zlib
|
||
|
bzip2
|
||
|
libjpeg
|
||
|
libpng
|
||
|
curl
|
||
|
openal
|
||
|
libopus
|
||
|
pkg-config
|
||
|
gcc
|
||
|
];
|
||
|
buildInputs = [
|
||
|
(pkgs.python3.withPackages (ps: with ps; [
|
||
|
ipython
|
||
|
]))
|
||
|
];
|
||
|
}
|