summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2022-10-30 00:26:48 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2022-10-30 11:18:59 +0100
commit4eb6161eeeb7c35647fe9dd230c5a2e4028614db (patch)
treeae44e688ec6d33c54b43c111212795c7dc80a605
parent4c713c35a0b47f60c94933291f453d9aff597899 (diff)
downloadnixpkgs-4eb6161eeeb7c35647fe9dd230c5a2e4028614db.tar
nixpkgs-4eb6161eeeb7c35647fe9dd230c5a2e4028614db.tar.gz
nixpkgs-4eb6161eeeb7c35647fe9dd230c5a2e4028614db.tar.bz2
nixpkgs-4eb6161eeeb7c35647fe9dd230c5a2e4028614db.tar.lz
nixpkgs-4eb6161eeeb7c35647fe9dd230c5a2e4028614db.tar.xz
nixpkgs-4eb6161eeeb7c35647fe9dd230c5a2e4028614db.tar.zst
nixpkgs-4eb6161eeeb7c35647fe9dd230c5a2e4028614db.zip
oneko: use xorg.* packages directly instead of xlibsWrapper indirection
Tested as no material change in `out` output with `diffoscope`.
-rw-r--r--pkgs/applications/misc/oneko/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/applications/misc/oneko/default.nix b/pkgs/applications/misc/oneko/default.nix
index e8399aeb098..17a94511e3f 100644
--- a/pkgs/applications/misc/oneko/default.nix
+++ b/pkgs/applications/misc/oneko/default.nix
@@ -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" ];