Merge pull request #1893 from ttuegel/maintainer

Claim maintainership of recently added packages
This commit is contained in:
Domen Kožar 2014-03-07 21:53:12 +01:00
commit a73ab2f4cf
7 changed files with 22 additions and 12 deletions

View file

@ -44,5 +44,6 @@ stdenv.mkDerivation {
description = "A multiplatform music player";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ maintainers.ttuegel ];
};
}

View file

@ -9,9 +9,11 @@ stdenv.mkDerivation {
buildInputs = [ glib gtk intltool libfm libX11 pango pkgconfig ];
meta = {
meta = with stdenv.lib; {
homepage = "http://blog.lxde.org/?cat=28/";
license = stdenv.lib.licenses.gpl2Plus;
license = licenses.gpl2Plus;
description = "File manager with GTK+ interface";
maintainers = [ maintainers.ttuegel ];
platforms = platforms.linux;
};
}

View file

@ -9,9 +9,11 @@ stdenv.mkDerivation {
buildInputs = [ glib gtk intltool menu-cache pango pkgconfig vala ];
meta = {
meta = with stdenv.lib; {
homepage = "http://blog.lxde.org/?cat=28/";
license = stdenv.lib.licenses.gpl2Plus;
license = licenses.gpl2Plus;
description = "A glib-based library for file management";
maintainers = [ maintainers.ttuegel ];
platforms = platforms.linux;
};
}

View file

@ -9,9 +9,11 @@ stdenv.mkDerivation {
buildInputs = [ glib pkgconfig ];
meta = {
meta = with stdenv.lib; {
homepage = "http://blog.lxde.org/?tag=menu-cache";
license = stdenv.lib.licenses.gpl2Plus;
license = licenses.gpl2Plus;
description = "Library to read freedesktop.org menu files";
maintainers = [ maintainers.ttuegel ];
platforms = platforms.linux;
};
}

View file

@ -25,5 +25,6 @@ stdenv.mkDerivation {
description = "A collection of Fortran77 subroutines to solve large scale eigenvalue problems";
platforms = stdenv.lib.platforms.all;
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.ttuegel ];
};
}

View file

@ -28,10 +28,11 @@ stdenv.mkDerivation {
-DQTC_QT4_ENABLE_KWIN=ON
'';
meta = {
meta = with stdenv.lib; {
homepage = https://github.com/QtCurve/qtcurve;
description = "Widget styles for Qt4/KDE4 and gtk2";
platforms = stdenv.lib.platforms.linux;
license = "LGPLv2.1+";
platforms = platforms.linux;
license = licenses.lgpl21Plus;
maintainers = [ maintainers.ttuegel ];
};
}

View file

@ -31,7 +31,7 @@ stdenv.mkDerivation {
-DKDE4_LIBEXEC_INSTALL_DIR=lib/kde4/libexec
'';
meta = {
meta = with stdenv.lib; {
homepage = https://projects.kde.org/projects/extragear/base/kde-gtk-config;
description = "GTK configuration module for KDE System Settings";
longDescription = ''
@ -43,7 +43,8 @@ stdenv.mkDerivation {
- Select GTK applications default fonts.
- Easily browse and install new GTK2 and GTK3 themes.
'';
platforms = stdenv.lib.platforms.linux;
license = "GPLv3";
platforms = platforms.linux;
license = licenses.gpl3;
maintainers = [ maintainers.ttuegel ];
};
}