mirror of
https://github.com/MeexReay/bRAC.git
synced 2025-05-06 13:38:04 +03:00
18 lines
347 B
Nix
18 lines
347 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
let
|
|
devDeps = with pkgs; [
|
|
pkg-config
|
|
openssl
|
|
gtk4
|
|
pango
|
|
];
|
|
in pkgs.mkShell {
|
|
shellHook = ''
|
|
export RUST_SRC_PATH=${pkgs.rustPlatform.rustLibSrc}
|
|
'';
|
|
buildInputs = devDeps;
|
|
nativeBuildInputs = with pkgs; [
|
|
rustc
|
|
cargo
|
|
] ++ devDeps;
|
|
} |