diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-10-23 20:38:29 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-10-23 20:39:46 +0200 |
commit | 4163b6d855a4e655852029625762fccb077a196d (patch) | |
tree | 15c8925931047f5e303ad1862a18864d5fb065aa | |
parent | 3f4ea9a62b5fa68d57724b2f83c35a191e33b7c8 (diff) |
gnu: avahi: Don't use package/inherit.
Thanks to Mark H Weaver <mhw@netris.org>.
* gnu/packages/avahi.scm (avahi): Use (package (inherit …)) instead of
package/inherit.
-rw-r--r-- | gnu/packages/avahi.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/avahi.scm b/gnu/packages/avahi.scm index 408be8ed57..e84fed6a71 100644 --- a/gnu/packages/avahi.scm +++ b/gnu/packages/avahi.scm @@ -76,7 +76,8 @@ DNS-SD (for \"DNS-Based Service Discovery\") protocols.") (license lgpl2.1+))) (define avahi/fixed - (package/inherit avahi + (package + (inherit avahi) (source (origin (inherit (package-source avahi)) (patches |