summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2014-03-07 11:20:18 -0600
committerThomas Tuegel <ttuegel@gmail.com>2014-03-07 11:23:30 -0600
commitdf5639183c852614be773a2ec7655556224a3f23 (patch)
treef248b4e556455d1c0e62b6c78135d1c2bb1b1e33 /pkgs/misc
parent9906b7da34daec682f20bad6eff04b192af07950 (diff)
downloadnixlib-df5639183c852614be773a2ec7655556224a3f23.tar
nixlib-df5639183c852614be773a2ec7655556224a3f23.tar.gz
nixlib-df5639183c852614be773a2ec7655556224a3f23.tar.bz2
nixlib-df5639183c852614be773a2ec7655556224a3f23.tar.lz
nixlib-df5639183c852614be773a2ec7655556224a3f23.tar.xz
nixlib-df5639183c852614be773a2ec7655556224a3f23.tar.zst
nixlib-df5639183c852614be773a2ec7655556224a3f23.zip
Claim maintainership of recently added packages
Also set platforms for some packages where it was missing.
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/themes/qtcurve/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/misc/themes/qtcurve/default.nix b/pkgs/misc/themes/qtcurve/default.nix
index 017a47349a9c..ec5feb27c85b 100644
--- a/pkgs/misc/themes/qtcurve/default.nix
+++ b/pkgs/misc/themes/qtcurve/default.nix
@@ -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 ];
   };
 }