mirror of
https://github.com/fergalmoran/flameshot.git
synced 2025-12-22 01:41:19 +00:00
* Add kguiaddons to shell.nix This package is needed to compile flameshot with USE_WAYLAND_CLIPBOARD * Add .direnv to gitignore This directory is automatically created by direnv when evaluating the .envrc file --------- Co-authored-by: mae <git@badat.dev>
12 lines
209 B
Nix
12 lines
209 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
cmake
|
|
qt5.full
|
|
qt5.qttools
|
|
qt5.qtsvg
|
|
];
|
|
buildInputs = with pkgs; [ qt5.qtbase libsForQt5.kguiaddons ];
|
|
}
|