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

@@ -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;
};
}