summary refs log tree commit diff
path: root/pkgs/development/libraries/appstream-glib/default.nix
blob: 14fbcdf7342c9254cf8bc0bee62d16ef0a7f3510 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchurl, pkgconfig, gettext, gtk3, intltool, glib
, gtk_doc, autoconf, automake, libtool, libarchive, libyaml
, gobjectIntrospection, sqlite, libsoup, gcab, attr, acl, docbook_xsl
}:

stdenv.mkDerivation rec {
  name = "appstream-glib-0.3.6";

  src = fetchurl {
    url = "https://github.com/hughsie/appstream-glib/archive/appstream_glib_0_3_6.tar.gz";
    sha256 = "1zdxg9dk9vxw2cs04cswd138di3dysz0hxk4918750hh19s3859c";
  };

  buildInputs = [ glib libtool pkgconfig gtk_doc gettext intltool sqlite libsoup
                  gcab attr acl docbook_xsl
                  libarchive libyaml gtk3 autoconf automake gobjectIntrospection ];

  configureScript = "./autogen.sh";

  meta = with stdenv.lib; {
    description = "Objects and helper methods to read and write AppStream metadata";
    homepage    = https://github.com/hughsie/appstream-glib;
    license     = licenses.lgpl21Plus;
    platforms   = platforms.linux;
    maintainers = with maintainers; [ lethalman ];
  };

}