mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add gnome-disk-utility.
* gnu/packages/gnome.scm (gnome-disk-utility): New variable.
This commit is contained in:
parent
7b83b695d3
commit
6c4f7022c6
1 changed files with 37 additions and 0 deletions
|
@ -324,6 +324,43 @@ (define-public gnome-doc-utils
|
|||
and keep up to date translations of documentation.")
|
||||
(license license:gpl2+))) ; xslt under lgpl
|
||||
|
||||
(define-public gnome-disk-utility
|
||||
(package
|
||||
(name "gnome-disk-utility")
|
||||
(version "3.22.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||
(version-major+minor version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1hqynlcgwm72il2rdml98gcarz0alsgxs5xf6ww2x0czaj3s3953"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("glib:bin" ,glib "bin")
|
||||
("intltool" ,intltool)
|
||||
("pkg-config" ,pkg-config)
|
||||
("docbook-xml" ,docbook-xml)
|
||||
("docbook-xsl" ,docbook-xsl)
|
||||
("libxml2" ,libxml2)
|
||||
("libxslt" ,libxslt)))
|
||||
(inputs
|
||||
`(("glib" ,glib)
|
||||
("appstream-glib" ,appstream-glib)
|
||||
("gnome-settings-daemon" ,gnome-settings-daemon)
|
||||
("gtk+" ,gtk+)
|
||||
("libcanberra" ,libcanberra)
|
||||
("libdvdread" ,libdvdread)
|
||||
("libnotify" ,libnotify)
|
||||
("libpwquality" ,libpwquality)
|
||||
("libsecret" ,libsecret)
|
||||
("udisks" ,udisks)))
|
||||
(home-page "https://git.gnome.org/browse/gnome-disk-utility")
|
||||
(synopsis "Disk management utility for GNOME")
|
||||
(description "Disk management utility for GNOME.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public gcr
|
||||
(package
|
||||
(name "gcr")
|
||||
|
|
Loading…
Reference in a new issue