ricochet-refresh-nixpkgs/shell.nix
2023-07-26 09:15:44 +00:00

20 lines
240 B
Nix

# shell.nix
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
cmake
fmt_9
tor
openssl
protobuf
pkgconfig
] ++ ( with pkgs.libsForQt5; [
qtbase
qtquickcontrols2
qtmultimedia
qtdeclarative
qttools
]);
}