Skip to content

Commit

Permalink
Update Granite to 5.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Prior committed Oct 31, 2020
1 parent 67b9615 commit e36cdcf
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ Browse the directory of packages I've contributed [[CONTRIBUTED.org][over here]]

** Proposed packages 🚚📦📨

*** [[proposed/pantheon.scm][granite 5.5.0]]
#+HTML: <details>
#+HTML: <summary>An extension to gtk+ used in elementary OS applications.</summary>

- Issue tracker :: https://issues.guix.gnu.org/issue/44357

#+HTML: </details>

*** [[proposed/esbuild.scm][esbuild 0.8.0]]
#+HTML: <details>
#+HTML: <summary>Bundler and transpiler for js & ts.</summary>
Expand Down
37 changes: 37 additions & 0 deletions proposed/pantheon.scm
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,43 @@
#:use-module (guix packages)
#:use-module (guix utils))

(define-public granite
(package
(name "granite")
(version "5.5.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/elementary/granite")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"13qfhq8xndikk6kmybibs6a4ddyp6mhvbsp2yy4qr7aiiyxf7mna"))))
(build-system meson-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'disable-icon-cache
(lambda _
(setenv "DESTDIR" "/")
#t)))))
(inputs
`(("glib" ,glib)
("gtk" ,gtk+)
("libgee" ,libgee)))
(native-inputs
`(("gettext" ,gettext-minimal)
("gobject-introspection" ,gobject-introspection)
("pkg-config" ,pkg-config)
("vala" ,vala)))
(home-page "https://github.com/elementary/granite")
(synopsis "Library that extends GTK with common widgets and utilities")
(description "Granite is a companion library for GTK+ and GLib. Among other
things, it provides complex widgets and convenience functions designed for use
in apps built for the Pantheon desktop.")
(license license:lgpl3+)))

(define-public appstream
(package
(name "appstream")
Expand Down

0 comments on commit e36cdcf

Please sign in to comment.