Skip to content

Commit

Permalink
ksnip: Move dependencies from nativeBuildInputs to buildInputs
Browse files Browse the repository at this point in the history
  • Loading branch information
x3rAx committed Sep 16, 2021
1 parent 4f1e2db commit 9ac0b84
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions pkgs/development/libraries/kColorPicker/default.nix
Expand Up @@ -20,6 +20,9 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [
cmake
];

buildInputs = [
qtbase
];

Expand Down
3 changes: 3 additions & 0 deletions pkgs/development/libraries/kImageAnnotator/default.nix
Expand Up @@ -23,6 +23,9 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [
cmake
];

buildInputs = [
kColorPicker
qtbase
qtsvg
Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/misc/ksnip/default.nix
Expand Up @@ -26,13 +26,13 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
cmake
extra-cmake-modules
qttranslations
];

buildInputs = [
kColorPicker
kImageAnnotator
qtsvg
qttranslations
qtx11extras
];

Expand Down

0 comments on commit 9ac0b84

Please sign in to comment.