mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
27 lines
409 B
Nix
27 lines
409 B
Nix
{ sources ? import ./sources.nix { }, pkgs ? import <nixpkgs> { } }:
|
|
|
|
let crate2nix = import sources.crate2nix { };
|
|
in pkgs.mkShell {
|
|
name = "veloren-shell";
|
|
nativeBuildInputs = with pkgs; [
|
|
pkg-config
|
|
python3
|
|
git
|
|
git-lfs
|
|
niv
|
|
nixfmt
|
|
crate2nix
|
|
rustup
|
|
];
|
|
buildInputs = with pkgs; [
|
|
alsaLib
|
|
atk
|
|
cairo
|
|
glib
|
|
gtk3
|
|
libudev
|
|
openssl
|
|
pango
|
|
];
|
|
}
|