Skip to content

Commit

Permalink
Merge pull request #49648 from worldofpeace/granite/5.2.0
Browse files Browse the repository at this point in the history
granite: 5.1.0 -> 5.2.0
  • Loading branch information
jtojnar authored Nov 2, 2018
2 parents f648605 + 8cf1e97 commit b603856
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions pkgs/development/libraries/granite/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{ stdenv, fetchFromGitHub, perl, cmake, ninja, vala_0_40, pkgconfig, gobjectIntrospection, glib, gtk3, gnome3, gettext }:
{ stdenv, fetchFromGitHub, cmake, ninja, vala_0_40, pkgconfig, gobjectIntrospection, gnome3, gtk3, glib, gettext }:

stdenv.mkDerivation rec {
name = "granite-${version}";
version = "5.1.0";
pname = "granite";
version = "5.2.0";

name = "${pname}-${version}";

src = fetchFromGitHub {
owner = "elementary";
repo = "granite";
repo = pname;
rev = version;
sha256 = "1v1yhz6rp616xi417m9r8072s6mpz5i8vkdyj264b73p0lgjwh40";
};
Expand All @@ -21,10 +23,10 @@ stdenv.mkDerivation rec {
gettext
gobjectIntrospection
ninja
perl
pkgconfig
vala_0_40
vala_0_40 # should be `elementary.vala` when elementary attribute set is merged
];

buildInputs = [
glib
gnome3.libgee
Expand All @@ -33,9 +35,12 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "An extension to GTK+ used by elementary OS";
longDescription = "An extension to GTK+ that provides several useful widgets and classes to ease application development. Designed for elementary OS.";
longDescription = ''
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 elementary OS.
'';
homepage = https://github.com/elementary/granite;
license = licenses.lgpl3;
license = licenses.lgpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ vozz worldofpeace ];
};
Expand Down

0 comments on commit b603856

Please sign in to comment.