mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
unclutter: use xorg.* packages directly instead of xlibsWrapper indirection
Tested as no material change in `out` output with `diffoscope`.
This commit is contained in:
parent
e8229690bb
commit
d9ffff599a
@ -1,4 +1,8 @@
|
||||
{lib, stdenv, fetchurl, xlibsWrapper}:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, libX11
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "unclutter";
|
||||
@ -8,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "33a78949a7dedf2e8669ae7b5b2c72067896497820292c96afaa60bb71d1f2a6";
|
||||
};
|
||||
|
||||
buildInputs = [xlibsWrapper];
|
||||
buildInputs = [ libX11 ];
|
||||
|
||||
buildFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user