tree-wide: fix either check-meta or meta attrs of all the packages I evaluate

This commit is contained in:
Jan Malakhovski 2017-12-05 11:57:11 +00:00 committed by Robin Gloster
parent 8ae51ff9c1
commit 1858e8909e
5 changed files with 11 additions and 10 deletions

View File

@ -30,10 +30,10 @@ buildPythonPackage rec {
# gcc: error: pygpu_language_opencl.cpp: No such file or directory
doCheck = false;
meta = {
meta = with stdenv.lib; {
description = "Python wrapper for OpenCL";
homepage = https://github.com/pyopencl/pyopencl;
license = stdenv.lib.licenses.mit;
maintainer = stdenv.lib.maintainers.fridh;
license = licenses.mit;
maintainers = [ maintainers.fridh ];
};
}

View File

@ -48,6 +48,6 @@ stdenv.mkDerivation rec {
description = "A DOS emulator";
platforms = platforms.unix;
maintainers = with maintainers; [ matthewbauer ];
licenses = licenses.gpl2;
license = licenses.gpl2;
};
}

View File

@ -125,7 +125,7 @@ let
Copy-On-Write filesystem with data integrity detection and repair,
snapshotting, cloning, block devices, deduplication, and more.
'';
home = http://zfsonlinux.org/;
homepage = http://zfsonlinux.org/;
license = licenses.cddl;
platforms = platforms.linux;
maintainers = with maintainers; [ jcumming wizeman wkennington fpletz globin ];

View File

@ -136,7 +136,7 @@ let
description = str;
longDescription = str;
branch = str;
homepage = str;
homepage = either (listOf str) str;
downloadPage = str;
license = either (listOf lib.types.attrs) (either lib.types.attrs str);
maintainers = listOf str;
@ -158,6 +158,7 @@ let
downloadURLRegexp = str;
isFcitxEngine = bool;
isIbusEngine = bool;
isGutenprint = bool;
};
checkMetaAttr = k: v:

View File

@ -13,11 +13,11 @@ in stdenv.mkDerivation {
buildInputs = [ cmake ];
meta = {
meta = with stdenv.lib; {
homepage = "https://gitlab.com/interception/linux/plugins/caps2esc";
description = "Transforming the most useless key ever into the most useful one";
license = stdenv.lib.licenses.mit;
maintainers = stdenv.lib.maintainers.vyp;
platforms = stdenv.lib.platforms.linux;
license = licenses.mit;
maintainers = [ maintainers.vyp ];
platforms = platforms.linux;
};
}