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