1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-28 20:12:11 +02:00

gnu: ghostscript: Fix grafting of ghostscript/x and ghostscript/cups.

* gnu/packages/cups.scm (ghostscript/cups): Use package/inherit.
* gnu/packages/ghostscript.scm (ghostscript/x): Use package/inherit.
(ghostscript/fixed)[replacement]: Override to #f.
This commit is contained in:
Mark H Weaver
2017-05-02 03:41:24 -04:00
parent bedba06426
commit 7020a6ab8b
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -4,6 +4,7 @@
;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2016 Danny Milosavljevic <dannym@scratchpost.org>
;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
;;; Copyright © 2017 Mark H Weaver <mhw@netris.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -44,9 +45,8 @@
;; Delay to avoid module circularity problems.
(define ghostscript/cups
(delay
(package (inherit ghostscript)
(package/inherit ghostscript
(name "ghostscript-with-cups")
(replacement #f)
(inputs `(("cups" ,cups-minimal)
,@(package-inputs ghostscript))))))