gnu: GParted: Update 1.0.0.
* gnu/packages/disk.scm (gparted): Update to 1.0.0. [arguments]: Remove obsolete configure flag. [inputs]: Use gtkmm@3. Add yelp-tools and itstool. Remove libxslt, gnome-doc-utils, docbook-xml-4.2, python-2, python2-libxml2, and which. [native-inputs]: Add lvm2.
This commit is contained in:
parent
ac72162efd
commit
ff22ff42a1
1 changed files with 11 additions and 11 deletions
|
@ -13,6 +13,7 @@
|
||||||
;;; Copyright © 2018 Eric Bavier <bavier@member.fsf.org>
|
;;; Copyright © 2018 Eric Bavier <bavier@member.fsf.org>
|
||||||
;;; Copyright © 2018 Rutger Helling <rhelling@mykolab.com>
|
;;; Copyright © 2018 Rutger Helling <rhelling@mykolab.com>
|
||||||
;;; Copyright © 2018, 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
;;; Copyright © 2018, 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||||
|
;;; Copyright © 2019 Leo Famulari <leo@famulari.name>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -341,32 +342,31 @@ and can dramatically shorten the lifespan of the drive if left unchecked.")
|
||||||
(define-public gparted
|
(define-public gparted
|
||||||
(package
|
(package
|
||||||
(name "gparted")
|
(name "gparted")
|
||||||
(version "0.33.0")
|
(version "1.0.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://sourceforge/gparted/gparted/gparted-"
|
(uri (string-append "mirror://sourceforge/gparted/gparted/gparted-"
|
||||||
version "/gparted-" version ".tar.gz"))
|
version "/gparted-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1ml1ky3s75lbxr91p608q3prsdh9x899mw7nbgk252pqhg4vh8sh"))))
|
(base32
|
||||||
|
"0mdvn85jvy72ff7nds3dakx9kzknh8gx1z8i0w2sf970q03qp2z4"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; tests require a network connection
|
;; Tests require access to paths outside the build container, such
|
||||||
#:configure-flags '("--disable-scrollkeeper")))
|
;; as '/dev/disk/by-id'
|
||||||
|
`(#:tests? #f))
|
||||||
(inputs
|
(inputs
|
||||||
`(("util-linux" ,util-linux)
|
`(("util-linux" ,util-linux)
|
||||||
("parted" ,parted)
|
("parted" ,parted)
|
||||||
("glib" ,glib)
|
("glib" ,glib)
|
||||||
("gtkmm" ,gtkmm-2)
|
("gtkmm" ,gtkmm)
|
||||||
("libxml2" ,libxml2)
|
("libxml2" ,libxml2)
|
||||||
("libxslt" ,libxslt)
|
("yelp-tools" ,yelp-tools)
|
||||||
("gnome-doc-utils" ,gnome-doc-utils)
|
("itstool" ,itstool)))
|
||||||
("docbook-xml" ,docbook-xml-4.2)
|
|
||||||
("python" ,python-2)
|
|
||||||
("python-libxml2" ,python2-libxml2)
|
|
||||||
("which" ,which)))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("intltool" ,intltool)
|
`(("intltool" ,intltool)
|
||||||
|
("lvm2" ,lvm2) ; for tests
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
(home-page "https://gparted.org/")
|
(home-page "https://gparted.org/")
|
||||||
(synopsis "Partition editor to graphically manage disk partitions")
|
(synopsis "Partition editor to graphically manage disk partitions")
|
||||||
|
|
Reference in a new issue