added meta information

This commit is contained in:
Sven Keidel 2014-07-31 00:40:05 +02:00
parent 2d31046a40
commit 6a7d82d000
4 changed files with 25 additions and 3 deletions

View File

@ -33,10 +33,11 @@ in stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = {
meta = with stdenv.lib; {
description = "GTK Manager for an Apple ipod";
homepage = http://gtkpod.sourceforge.net;
license = stdenv.lib.licenses.gpl2Plus;
platforms = with stdenv.lib.platforms; linux;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.skeidel ];
};
}

View File

@ -18,4 +18,11 @@ in stdenv.mkDerivation rec {
buildInputs = [ pkgconfig flex bison gtk3 libxml2 gnome3.gjs gnome3.gdl
gnome3.libgda gnome3.gtksourceview intltool itstool python ];
meta = with stdenv.lib; {
description = "Software development studio";
homepage = http://anjuta.org/;
license = licenses.gpl2;
platforms = platforms.linux;
};
}

View File

@ -14,4 +14,11 @@ in stdenv.mkDerivation rec {
};
buildInputs = [ pkgconfig libxml2 gtk3 intltool ];
meta = with stdenv.lib; {
description = "Gnome docking library";
homepage = https://developer.gnome.org/gdl/;
license = [ licenses.gpl2 ];
platforms = platforms.linux;
};
}

View File

@ -20,4 +20,11 @@ in stdenv.mkDerivation rec {
enableParallelBuilding = true;
buildInputs = [ pkgconfig intltool itstool libxml2 gtk3 ];
meta = with stdenv.lib; {
description = "Database access library";
homepage = http://www.gnome-db.org/;
license = [ licenses.lgpl2 licenses.gpl2 ];
platforms = platforms.linux;
};
}