summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2022-12-09 05:13:56 +0200
committerGitHub <noreply@github.com>2022-12-09 05:13:56 +0200
commit0aa0c46ef5eff2239e6e1c7e939ea9a856211a55 (patch)
treecc2f1cbc166d4ce153923b302a1e9196e6cdfe61 /pkgs/tools
parentd096dddffba91ad8b4aaf4addb965021e3b13d7e (diff)
parentc55b931644dca89671a25de47d8d207dd37d6555 (diff)
Merge pull request #205201 from Artturin/lintfixes1
Lint fixes
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/wwcd/default.nix3
-rw-r--r--pkgs/tools/wayland/waynergy/default.nix2
2 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/misc/wwcd/default.nix b/pkgs/tools/misc/wwcd/default.nix
index d18c72a25eeb6..41c66d945f40a 100644
--- a/pkgs/tools/misc/wwcd/default.nix
+++ b/pkgs/tools/misc/wwcd/default.nix
@@ -17,11 +17,12 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-laf1DEtdEs7q+rtp5Y5rb+7AGsKUv5T413CFWJiURWw=";
   };
 
-  autoreconfFlags = "-if";
   nativeBuildInputs = [
     autoreconfHook pkg-config check
   ];
 
+  autoreconfFlags = [ "-if" ];
+
   meta = with lib; {
     description = "What would cron do? Read crontab entries from stdin and print time of next execution(s)";
     homepage = "https://git.sr.ht/~bitfehler/wwcd";
diff --git a/pkgs/tools/wayland/waynergy/default.nix b/pkgs/tools/wayland/waynergy/default.nix
index c6b10c293bfdb..fce7ac6605af9 100644
--- a/pkgs/tools/wayland/waynergy/default.nix
+++ b/pkgs/tools/wayland/waynergy/default.nix
@@ -25,8 +25,8 @@ stdenv.mkDerivation rec {
   };
 
   depsBuildBuild = [ pkg-config ];
-  buildInputs = [ libdrm wayland wayland-protocols wl-clipboard libxkbcommon cmake libressl ];
   nativeBuildInputs = [ meson ninja ];
+  buildInputs = [ libdrm wayland wayland-protocols wl-clipboard libxkbcommon libressl ];
 
   postPatch = ''
     substituteInPlace waynergy.desktop --replace "Exec=/usr/bin/waynergy" "Exec=$out/bin/waynergy"