the-honkers-railway-launcher/shell.nix

40 lines
786 B
Nix
Raw Normal View History

let
nixpkgs = builtins.fetchGit {
2024-06-17 09:01:49 +00:00
name = "nixos-24.05";
url = "https://github.com/nixos/nixpkgs";
2024-06-17 09:01:49 +00:00
ref = "refs/heads/nixos-24.05";
};
nixpkgs-unstable = builtins.fetchGit {
name = "nixos-unstable";
url = "https://github.com/nixos/nixpkgs";
ref = "refs/heads/nixos-unstable";
};
pkgs = import nixpkgs {};
pkgs-unstable = import nixpkgs-unstable {};
in pkgs.mkShell {
nativeBuildInputs = with pkgs; [
2024-05-26 18:56:39 +00:00
pkgs-unstable.rustup
pkgs-unstable.rustfmt
pkgs-unstable.clippy
gcc
cmake
pkg-config
2024-06-17 09:01:49 +00:00
xdelta
libwebp
];
buildInputs = with pkgs; [
gtk4
glib
gdk-pixbuf
gobject-introspection
libadwaita
];
}