diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-05-17 18:07:08 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-05-17 18:15:59 +0200 |
commit | bbb5d8aeea213f32e51ae18407aa8941f18a010b (patch) | |
tree | ffed5068ca3a669b1ed65b0523c74c32a3100a93 /gnu/packages/gd.scm | |
parent | 99effc8faa43d478371eb06aee5df8ae1383c51a (diff) | |
download | gnu-guix-bbb5d8aeea213f32e51ae18407aa8941f18a010b.tar gnu-guix-bbb5d8aeea213f32e51ae18407aa8941f18a010b.tar.gz |
gnu: gd: Specify 'cpe-name'.
* gnu/packages/gd.scm (gd)[properties]: New field.
Diffstat (limited to 'gnu/packages/gd.scm')
-rw-r--r-- | gnu/packages/gd.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/gd.scm b/gnu/packages/gd.scm index 6ae5579b9c..769e7cecf2 100644 --- a/gnu/packages/gd.scm +++ b/gnu/packages/gd.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2016 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org> ;;; @@ -69,7 +69,8 @@ formats. GD is commonly used to generate charts, graphics, thumbnails, and most anything else, on the fly. While not restricted to use on the web, the most common applications of GD involve website development.") (license (non-copyleft "file://COPYING" - "See COPYING file in the distribution.")))) + "See COPYING file in the distribution.")) + (properties '((cpe-name . "libgd"))))) (define-public perl-gd (package |