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

Tested as no material change in `out` output with `diffoscope`.
This commit is contained in:
Sergei Trofimovich 2022-10-30 00:26:48 +01:00 committed by Bjørn Forsman
parent 4c713c35a0
commit 4eb6161eee

View file

@ -1,4 +1,11 @@
{ lib, stdenv, fetchFromGitHub, imake, gccmakedep, xlibsWrapper }:
{ lib
, stdenv
, fetchFromGitHub
, imake
, gccmakedep
, libX11
, libXext
}:
stdenv.mkDerivation rec {
version_name = "1.2.hanami.6";
@ -11,7 +18,7 @@ stdenv.mkDerivation rec {
sha256 = "0vx12v5fm8ar3f1g6jbpmd3b1q652d32nc67ahkf28djbqjgcbnc";
};
nativeBuildInputs = [ imake gccmakedep ];
buildInputs = [ xlibsWrapper ];
buildInputs = [ libX11 libXext ];
makeFlags = [ "BINDIR=$(out)/bin" "MANPATH=$(out)/share/man" ];
installTargets = [ "install" "install.man" ];