nixpkgs/pkgs/development/libraries/granite/default.nix

48 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, ninja, vala_0_40, pkgconfig, gobjectIntrospection, gnome3, gtk3, glib, gettext }:
stdenv.mkDerivation rec {
pname = "granite";
version = "5.2.1";
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "elementary";
repo = pname;
rev = version;
sha256 = "18rw1lv6zk5w2cq8bv6b869z3cdikn9gzk30gw1s9f8n06bh737h";
};
cmakeFlags = [
"-DINTROSPECTION_GIRDIR=share/gir-1.0/"
"-DINTROSPECTION_TYPELIBDIR=lib/girepository-1.0"
];
nativeBuildInputs = [
cmake
gettext
gobjectIntrospection
2018-08-16 10:48:39 +00:00
ninja
pkgconfig
vala_0_40 # should be `elementary.vala` when elementary attribute set is merged
];
buildInputs = [
glib
gnome3.libgee
2018-08-16 10:48:39 +00:00
gtk3
];
meta = with stdenv.lib; {
description = "An extension to GTK+ used by 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.lgpl3Plus;
platforms = platforms.linux;
2018-08-16 10:48:39 +00:00
maintainers = with maintainers; [ vozz worldofpeace ];
};
}