diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-06-15 15:07:57 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-06-15 23:39:32 +0200 |
commit | 82c865c41a9e61cc4915779e2d6c86305403ce75 (patch) | |
tree | dc0c251086d0a7c8457a7df9986f6792717ef4cb /gnu/packages/pkg-config.scm | |
parent | 4b9adff901e6bb6ef9e631df305a38668e22bd27 (diff) | |
download | guix-82c865c41a9e61cc4915779e2d6c86305403ce75.tar guix-82c865c41a9e61cc4915779e2d6c86305403ce75.tar.gz |
gnu: pkg-config: Export package definition.
* gnu/packages/pkg-config.scm (%pkg-config): Make public.
Reported by Andreas Enge <andreas@enge.fr>.
Diffstat (limited to 'gnu/packages/pkg-config.scm')
-rw-r--r-- | gnu/packages/pkg-config.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/pkg-config.scm b/gnu/packages/pkg-config.scm index 9f10440fec..eb5f748bda 100644 --- a/gnu/packages/pkg-config.scm +++ b/gnu/packages/pkg-config.scm @@ -24,7 +24,10 @@ #:use-module (guix build-system trivial) #: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 (name "pkg-config") (version "0.27.1") |