mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 04:37:36 -05: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:
parent
74555f6514
commit
4f2bb4300c
1 changed files with 7 additions and 4 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue