mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
Claim maintainership of recently added packages
Also set platforms for some packages where it was missing.
This commit is contained in:
parent
9906b7da34
commit
df5639183c
@ -44,5 +44,6 @@ stdenv.mkDerivation {
|
|||||||
description = "A multiplatform music player";
|
description = "A multiplatform music player";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.ttuegel ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -9,9 +9,11 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
buildInputs = [ glib gtk intltool libfm libX11 pango pkgconfig ];
|
buildInputs = [ glib gtk intltool libfm libX11 pango pkgconfig ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://blog.lxde.org/?cat=28/";
|
homepage = "http://blog.lxde.org/?cat=28/";
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
description = "File manager with GTK+ interface";
|
description = "File manager with GTK+ interface";
|
||||||
|
maintainers = [ maintainers.ttuegel ];
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -9,9 +9,11 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
buildInputs = [ glib gtk intltool menu-cache pango pkgconfig vala ];
|
buildInputs = [ glib gtk intltool menu-cache pango pkgconfig vala ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://blog.lxde.org/?cat=28/";
|
homepage = "http://blog.lxde.org/?cat=28/";
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
description = "A glib-based library for file management";
|
description = "A glib-based library for file management";
|
||||||
|
maintainers = [ maintainers.ttuegel ];
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -9,9 +9,11 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
buildInputs = [ glib pkgconfig ];
|
buildInputs = [ glib pkgconfig ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://blog.lxde.org/?tag=menu-cache";
|
homepage = "http://blog.lxde.org/?tag=menu-cache";
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
description = "Library to read freedesktop.org menu files";
|
description = "Library to read freedesktop.org menu files";
|
||||||
|
maintainers = [ maintainers.ttuegel ];
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -25,5 +25,6 @@ stdenv.mkDerivation {
|
|||||||
description = "A collection of Fortran77 subroutines to solve large scale eigenvalue problems";
|
description = "A collection of Fortran77 subroutines to solve large scale eigenvalue problems";
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.all;
|
||||||
license = stdenv.lib.licenses.bsd3;
|
license = stdenv.lib.licenses.bsd3;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.ttuegel ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -28,10 +28,11 @@ stdenv.mkDerivation {
|
|||||||
-DQTC_QT4_ENABLE_KWIN=ON
|
-DQTC_QT4_ENABLE_KWIN=ON
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/QtCurve/qtcurve;
|
homepage = https://github.com/QtCurve/qtcurve;
|
||||||
description = "Widget styles for Qt4/KDE4 and gtk2";
|
description = "Widget styles for Qt4/KDE4 and gtk2";
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
license = "LGPLv2.1+";
|
license = licenses.lgpl21Plus;
|
||||||
|
maintainers = [ maintainers.ttuegel ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@ stdenv.mkDerivation {
|
|||||||
-DKDE4_LIBEXEC_INSTALL_DIR=lib/kde4/libexec
|
-DKDE4_LIBEXEC_INSTALL_DIR=lib/kde4/libexec
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://projects.kde.org/projects/extragear/base/kde-gtk-config;
|
homepage = https://projects.kde.org/projects/extragear/base/kde-gtk-config;
|
||||||
description = "GTK configuration module for KDE System Settings";
|
description = "GTK configuration module for KDE System Settings";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
@ -43,7 +43,8 @@ stdenv.mkDerivation {
|
|||||||
- Select GTK applications default fonts.
|
- Select GTK applications default fonts.
|
||||||
- Easily browse and install new GTK2 and GTK3 themes.
|
- Easily browse and install new GTK2 and GTK3 themes.
|
||||||
'';
|
'';
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
license = "GPLv3";
|
license = licenses.gpl3;
|
||||||
|
maintainers = [ maintainers.ttuegel ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user