1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-22 09:05:54 +02:00

gnu: kicad-i18l: Fix typo in… name.

* gnu/packages/engineering.scm (kicad-i18n): New old variable previously…
(kicad-i18l): …this.  Redefine using DEPRECATED-PACKAGE.
(kicad)[arguments, native-inputs]: Adjust accordingly.
This commit is contained in:
Tobias Geerinckx-Rice
2020-05-15 19:11:47 +02:00
parent 74555f6514
commit 4f2bb4300c
+7 -4
View File
@@ -823,7 +823,7 @@ language.")
(modify-phases %standard-phases
(add-after 'install 'install-translations
(lambda* (#:key inputs outputs #:allow-other-keys)
(copy-recursively (assoc-ref inputs "kicad-i18l")
(copy-recursively (assoc-ref inputs "kicad-i18n")
(assoc-ref outputs "out"))
#t))
(add-after 'install 'wrap-program
@@ -861,7 +861,7 @@ language.")
`(("boost" ,boost)
("desktop-file-utils" ,desktop-file-utils)
("gettext" ,gettext-minimal)
("kicad-i18l" ,kicad-i18l)
("kicad-i18n" ,kicad-i18n)
("pkg-config" ,pkg-config)
("swig" ,swig)
("zlib" ,zlib)))
@@ -887,9 +887,9 @@ perform specific functions, for example, pcbnew (Editing PCB), eeschema (editing
electrical diagrams), gerbview (viewing Gerber files) and others.")
(license license:gpl3+)))
(define kicad-i18l
(define kicad-i18n
(package
(name "kicad-i18l")
(name "kicad-i18n")
(version "5.1.5")
(source (origin
(method git-fetch)
@@ -914,6 +914,9 @@ electrical diagrams), gerbview (viewing Gerber files) and others.")
translations for KiCad.")
(license license:gpl3+)))
(define-public kicad-i18l
(deprecated-package "kicad-i18l" kicad-i18n))
(define-public kicad-symbols
(package
(name "kicad-symbols")