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 5225626ffc
commit cb014f64a5
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -823,7 +823,7 @@ (define-public kicad
(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 @@ (define-public kicad
`(("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 @@ (define-public kicad
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 @@ (define kicad-i18l
translations for KiCad.")
(license license:gpl3+)))
(define-public kicad-i18l
(deprecated-package "kicad-i18l" kicad-i18n))
(define-public kicad-symbols
(package
(name "kicad-symbols")