at 18.03-beta 865 B view raw
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 nativeBuildInputs = [ pkgconfig ]; 14 buildInputs = [ autoconf automake m4 intltool glib 15 libsoup gdk_pixbuf ]; 16 17 configureScript = "./autogen.sh"; 18 19 meta = with stdenv.lib; { 20 homepage = http://people.freedesktop.org/~hughsient/appdata; 21 description = "CLI designed to validate AppData descriptions for standards compliance and to the style guide"; 22 platforms = platforms.linux; 23 license = licenses.gpl2; 24 maintainers = with maintainers; [ lethalman ]; 25 }; 26}