mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
tree-wide: fix either check-meta or meta attrs of all the packages I evaluate
This commit is contained in:
parent
8ae51ff9c1
commit
1858e8909e
5 changed files with 11 additions and 10 deletions
|
@ -30,10 +30,10 @@ buildPythonPackage rec {
|
||||||
# gcc: error: pygpu_language_opencl.cpp: No such file or directory
|
# gcc: error: pygpu_language_opencl.cpp: No such file or directory
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Python wrapper for OpenCL";
|
description = "Python wrapper for OpenCL";
|
||||||
homepage = https://github.com/pyopencl/pyopencl;
|
homepage = https://github.com/pyopencl/pyopencl;
|
||||||
license = stdenv.lib.licenses.mit;
|
license = licenses.mit;
|
||||||
maintainer = stdenv.lib.maintainers.fridh;
|
maintainers = [ maintainers.fridh ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,6 +48,6 @@ stdenv.mkDerivation rec {
|
||||||
description = "A DOS emulator";
|
description = "A DOS emulator";
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ matthewbauer ];
|
maintainers = with maintainers; [ matthewbauer ];
|
||||||
licenses = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -125,7 +125,7 @@ let
|
||||||
Copy-On-Write filesystem with data integrity detection and repair,
|
Copy-On-Write filesystem with data integrity detection and repair,
|
||||||
snapshotting, cloning, block devices, deduplication, and more.
|
snapshotting, cloning, block devices, deduplication, and more.
|
||||||
'';
|
'';
|
||||||
home = http://zfsonlinux.org/;
|
homepage = http://zfsonlinux.org/;
|
||||||
license = licenses.cddl;
|
license = licenses.cddl;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ jcumming wizeman wkennington fpletz globin ];
|
maintainers = with maintainers; [ jcumming wizeman wkennington fpletz globin ];
|
||||||
|
|
|
@ -136,7 +136,7 @@ let
|
||||||
description = str;
|
description = str;
|
||||||
longDescription = str;
|
longDescription = str;
|
||||||
branch = str;
|
branch = str;
|
||||||
homepage = str;
|
homepage = either (listOf str) str;
|
||||||
downloadPage = str;
|
downloadPage = str;
|
||||||
license = either (listOf lib.types.attrs) (either lib.types.attrs str);
|
license = either (listOf lib.types.attrs) (either lib.types.attrs str);
|
||||||
maintainers = listOf str;
|
maintainers = listOf str;
|
||||||
|
@ -158,6 +158,7 @@ let
|
||||||
downloadURLRegexp = str;
|
downloadURLRegexp = str;
|
||||||
isFcitxEngine = bool;
|
isFcitxEngine = bool;
|
||||||
isIbusEngine = bool;
|
isIbusEngine = bool;
|
||||||
|
isGutenprint = bool;
|
||||||
};
|
};
|
||||||
|
|
||||||
checkMetaAttr = k: v:
|
checkMetaAttr = k: v:
|
||||||
|
|
|
@ -13,11 +13,11 @@ in stdenv.mkDerivation {
|
||||||
|
|
||||||
buildInputs = [ cmake ];
|
buildInputs = [ cmake ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://gitlab.com/interception/linux/plugins/caps2esc";
|
homepage = "https://gitlab.com/interception/linux/plugins/caps2esc";
|
||||||
description = "Transforming the most useless key ever into the most useful one";
|
description = "Transforming the most useless key ever into the most useful one";
|
||||||
license = stdenv.lib.licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = stdenv.lib.maintainers.vyp;
|
maintainers = [ maintainers.vyp ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue