mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-18 07:18:56 +00:00
xwinwrap: use xorg.* packages directly instead of xlibsWrapper indirection
Tested as no material change in `out` output with `diffoscope`.
This commit is contained in:
parent
e180a6988a
commit
0b67da19df
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchbzr, xlibsWrapper }:
|
||||
{ lib, stdenv, fetchbzr, xorg }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xwinwrap";
|
||||
@ -11,7 +11,9 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
xlibsWrapper
|
||||
xorg.libX11
|
||||
xorg.libXext
|
||||
xorg.libXrender
|
||||
];
|
||||
|
||||
buildPhase = if stdenv.hostPlatform.system == "x86_64-linux" then ''
|
||||
|
Loading…
Reference in New Issue
Block a user