Files
flameshot/shell.nix
MaeIsBad a1dda59108 Fix nix direnv (#3613)
* 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>
2024-05-20 18:01:27 +03:00

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 ];
}