diff options
author | Raghav Gururajan <rg@raghavgururajan.name> | 2021-07-18 21:29:01 -0400 |
---|---|---|
committer | Raghav Gururajan <rg@raghavgururajan.name> | 2021-07-18 21:52:38 -0400 |
commit | 53e445c4634b88342c3fb92aecf0a2eb503ffcd9 (patch) | |
tree | f85d73eb1322cb543304c4f5b61356d36eccc545 | |
parent | 2fbffcf575208e45af7716b9952644d26702b455 (diff) | |
download | guix-53e445c4634b88342c3fb92aecf0a2eb503ffcd9.tar.gz |
gnu: libxscrnsaver: Propagate libx11 and libxext, as per pkg-config file.
* gnu/packages/xorg.scm (libxscrnsaver)[inputs]: Move libx11 and libxext to ... [propagated-inputs]: ... here.
-rw-r--r-- | gnu/packages/xorg.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 6a7849f8c6..dcfe74b5bd 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -1517,11 +1517,10 @@ treat it as part of their software base when porting.") (build-system gnu-build-system) (arguments '(#:configure-flags '("--disable-static"))) - (inputs - `(("libxext" ,libxext) - ("libx11" ,libx11))) (propagated-inputs - `(("xorgproto" ,xorgproto))) + `(("libx11" ,libx11) + ("libxext" ,libxext) + ("xorgproto" ,xorgproto))) (native-inputs `(("pkg-config" ,pkg-config))) (home-page "https://www.x.org/wiki/") |