Unverified Commit dda6fca0 authored by Nick Cao's avatar Nick Cao
Browse files

screentest: fix cross compilation, set strictDeps

parent 8c2cdea0
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -18,13 +18,18 @@ stdenv.mkDerivation (finalAttrs: {
    hash = "sha256-TJ47c77vQ/aRBJ2uEiFLuAR4dd4CMEo+iAAx0HCFbmA=";
  };

  strictDeps = true;

  nativeBuildInputs = [
    autoreconfHook
    intltool
    pkg-config
    gtk2 # for autoconf macros
  ];

  buildInputs = [ gtk2 ];
  buildInputs = [
    gtk2
  ];

  meta = with lib; {
    description = "A simple screen testing tool";