diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-05-02 14:42:49 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-05-03 20:26:59 +0200 |
commit | 470771c5e4c996067935643e8217db4fd43c6a16 (patch) | |
tree | 06ef8264a73153b4571ec075f7d3c8e2370b6e05 /gnu/packages/samba.scm | |
parent | 069f1c2074378bd9113d1ca8ef083f190e7347c2 (diff) |
gnu: samba: Propagate some inputs.
* gnu/packages/samba.scm (samba)[inputs]: Move LDB, TALLOC and TEVENT ...
[propagated-inputs]: ... here. New field.
Diffstat (limited to 'gnu/packages/samba.scm')
-rw-r--r-- | gnu/packages/samba.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm index fda1ad3e5b..5ac18e1ac0 100644 --- a/gnu/packages/samba.scm +++ b/gnu/packages/samba.scm @@ -204,14 +204,16 @@ anywhere.") ("gnutls" ,gnutls) ("iniparser" ,iniparser) ("libaio" ,libaio) - ("ldb" ,ldb) ("linux-pam" ,linux-pam) ("openldap" ,openldap) ("popt" ,popt) ("readline" ,readline) - ("talloc" ,talloc) - ("tevent" ,tevent) ("tdb" ,tdb))) + (propagated-inputs + ;; In Requires or Requires.private of pkg-config files. + `(("ldb" ,ldb) + ("talloc" ,talloc) + ("tevent" ,tevent))) (native-inputs `(("docbook-xsl" ,docbook-xsl) ;for generating manpages ("xsltproc" ,libxslt) ;ditto |