mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 04:17:40 +00:00
tightvnc: use xorg.* packages directly instead of xlibsWrapper indirection
Validated as no change in `out` output with `diffoscope`.
This commit is contained in:
parent
26592d9f27
commit
ec992804b4
@ -1,5 +1,20 @@
|
||||
{ lib, stdenv, fetchurl, xlibsWrapper, zlib, libjpeg, imake, gccmakedep, libXmu
|
||||
, libXaw, libXpm, libXp , perl, xauth, fontDirectories, openssh }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, zlib
|
||||
, libjpeg
|
||||
, imake
|
||||
, gccmakedep
|
||||
, libXaw
|
||||
, libXext
|
||||
, libXmu
|
||||
, libXp
|
||||
, libXpm
|
||||
, perl
|
||||
, xauth
|
||||
, fontDirectories
|
||||
, openssh
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tightvnc";
|
||||
@ -22,8 +37,19 @@ stdenv.mkDerivation rec {
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
buildInputs = [ xlibsWrapper zlib libjpeg imake gccmakedep libXmu libXaw
|
||||
libXpm libXp xauth openssh ];
|
||||
buildInputs = [
|
||||
zlib
|
||||
libjpeg
|
||||
imake
|
||||
gccmakedep
|
||||
libXaw
|
||||
libXext
|
||||
libXmu
|
||||
libXp
|
||||
libXpm
|
||||
xauth
|
||||
openssh
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
fontPath=
|
||||
|
Loading…
Reference in New Issue
Block a user