mirror of
https://github.com/fergalmoran/flameshot.git
synced 2025-12-22 09:51:06 +00:00
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:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -75,3 +75,4 @@ data/flatpak/.flatpak-builder
|
||||
|
||||
# Miscellaneous
|
||||
!docs/dev/Makefile
|
||||
.direnv
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ pkgs ? import <nixpkgs> {} }:
|
||||
{ pkgs ? import <nixpkgs> { } }:
|
||||
|
||||
pkgs.mkShell {
|
||||
nativeBuildInputs = with pkgs; [
|
||||
@@ -7,5 +7,5 @@ pkgs.mkShell {
|
||||
qt5.qttools
|
||||
qt5.qtsvg
|
||||
];
|
||||
buildInputs = [ pkgs.qt5.qtbase ];
|
||||
buildInputs = with pkgs; [ qt5.qtbase libsForQt5.kguiaddons ];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user