1{ stdenv, fetchurl, pkgconfig, autoconf, automake, m4
2, intltool, glib, libsoup, gdk_pixbuf }:
3
4stdenv.mkDerivation rec {
5 version = "0_1_7";
6 name = "appdata_tools-${version}";
7
8 src = fetchurl {
9 url = "https://github.com/hughsie/appdata-tools/archive/appdata_tools_${version}.tar.gz";
10 sha256 = "1bzqg4gy8gqhbk2qjizsm0b78li9mv84fb3d8qwfpxh7c7p360x8";
11 };
12
13 buildInputs = [ pkgconfig autoconf automake m4 intltool glib
14 libsoup gdk_pixbuf ];
15
16 configureScript = "./autogen.sh";
17
18 meta = with stdenv.lib; {
19 homepage = "http://people.freedesktop.org/~hughsient/appdata";
20 description = "CLI designed to validate AppData descriptions for standards compliance and to the style guide";
21 platforms = platforms.linux;
22 license = licenses.gpl2;
23 maintainers = with maintainers; [ lethalman ];
24 };
25}