diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-07-10 13:05:47 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-07-10 13:05:47 +0200 |
commit | a6eb1a95d6866fe9128faa49e13fdef2fc16173d (patch) | |
tree | 4ea34dc26ee36ac873c03f65673b470f154234d1 /gnu/packages/plotutils.scm | |
parent | 1650dd8a38019d539086f74981ce3f96f9679da4 (diff) | |
download | patches-a6eb1a95d6866fe9128faa49e13fdef2fc16173d.tar patches-a6eb1a95d6866fe9128faa49e13fdef2fc16173d.tar.gz |
gnu: plotutils: Propagate libXaw.
* gnu/packages/plotutils.scm (plotutils): Move LIBXAW to from 'inputs'
to 'propagated-inputs'.
Diffstat (limited to 'gnu/packages/plotutils.scm')
-rw-r--r-- | gnu/packages/plotutils.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/plotutils.scm b/gnu/packages/plotutils.scm index 23b3183e82..eae8abaad2 100644 --- a/gnu/packages/plotutils.scm +++ b/gnu/packages/plotutils.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -40,8 +40,11 @@ (build-system gnu-build-system) (inputs `(("libpng" ,libpng) ("libx11" ,libx11) - ("libxt" ,libxt) - ("libxaw" ,libxaw))) + ("libxt" ,libxt))) + + ;; libplot.la has '-lXaw'. + (propagated-inputs `(("libxaw" ,libxaw))) + (home-page "http://www.gnu.org/software/plotutils/") (synopsis "Plotting utilities and library") |