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>
This commit is contained in:
MaeIsBad
2024-05-20 17:01:27 +02:00
committed by GitHub
parent 5f30631a41
commit a1dda59108
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@@ -75,3 +75,4 @@ data/flatpak/.flatpak-builder
# Miscellaneous # Miscellaneous
!docs/dev/Makefile !docs/dev/Makefile
.direnv

View File

@@ -7,5 +7,5 @@ pkgs.mkShell {
qt5.qttools qt5.qttools
qt5.qtsvg qt5.qtsvg
]; ];
buildInputs = [ pkgs.qt5.qtbase ]; buildInputs = with pkgs; [ qt5.qtbase libsForQt5.kguiaddons ];
} }