oneko: use xorg.* packages directly instead of xlibsWrapper indirection

Tested as no material change in `out` output with `diffoscope`.

authored by Sergei Trofimovich and committed by Bjørn Forsman 4eb6161e 4c713c35

+9 -2
+9 -2
pkgs/applications/misc/oneko/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, imake, gccmakedep, xlibsWrapper }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , imake 5 + , gccmakedep 6 + , libX11 7 + , libXext 8 + }: 2 9 3 10 stdenv.mkDerivation rec { 4 11 version_name = "1.2.hanami.6"; ··· 11 18 sha256 = "0vx12v5fm8ar3f1g6jbpmd3b1q652d32nc67ahkf28djbqjgcbnc"; 12 19 }; 13 20 nativeBuildInputs = [ imake gccmakedep ]; 14 - buildInputs = [ xlibsWrapper ]; 21 + buildInputs = [ libX11 libXext ]; 15 22 16 23 makeFlags = [ "BINDIR=$(out)/bin" "MANPATH=$(out)/share/man" ]; 17 24 installTargets = [ "install" "install.man" ];