gnu: pkg-config: Export package definition.

* gnu/packages/pkg-config.scm (%pkg-config): Make public.
  Reported by Andreas Enge <andreas@enge.fr>.
This commit is contained in:
Ludovic Courtès 2013-06-15 15:07:57 +02:00
parent 4b9adff901
commit 82c865c41a

View file

@ -24,7 +24,10 @@ (define-module (gnu packages pkg-config)
#:use-module (guix build-system trivial) #:use-module (guix build-system trivial)
#:export (pkg-config)) #:export (pkg-config))
(define %pkg-config ;; This is the "primitive" pkg-config package. People should use `pkg-config'
;; (see below) rather than `%pkg-config', but we export `%pkg-config' so that
;; `fold-packages' finds it.
(define-public %pkg-config
(package (package
(name "pkg-config") (name "pkg-config")
(version "0.27.1") (version "0.27.1")