gnu: librecad: Update to 2.0.9.

* gnu/packages/engineering.scm (librecad): Update to 2.0.9.
[inputs]: Use qt instead of qt-4.
This commit is contained in:
Efraim Flashner 2016-02-16 08:52:50 +02:00
parent d4e21fbbe0
commit d8a4b93253

View file

@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch> ;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -55,16 +56,16 @@ (define-module (gnu packages engineering)
(define-public librecad (define-public librecad
(package (package
(name "librecad") (name "librecad")
(version "2.0.6-rc") (version "2.0.9")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
"https://github.com/LibreCAD/LibreCAD/archive/" "https://github.com/LibreCAD/LibreCAD/archive/"
version ".tar.gz")) version ".tar.gz"))
(file-name (string-append name "-" version)) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"1n1mh8asj6yrl5hi438dvizmrbqk1kni5xkizhi3pdmkg7z3hksm")))) "0xyn4ps9ia94h0vg53rsww8xfd1bgp4200phl8ihyhv7w5v4d8d0"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(#:phases '(#:phases
@ -95,7 +96,7 @@ (define-public librecad
`(("boost" ,boost) `(("boost" ,boost)
("muparser" ,muparser) ("muparser" ,muparser)
("freetype" ,freetype) ("freetype" ,freetype)
("qt" ,qt-4))) ("qt" ,qt)))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config) `(("pkg-config" ,pkg-config)
("which" ,which))) ("which" ,which)))