mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
tree-wide: fix instance of "meta.maintainer" -> "meta.maintainers"
Encountered one of these when using check-meta, did a quick search to find other instances.
This commit is contained in:
parent
e821f40c26
commit
4f273627a1
@ -374,7 +374,7 @@ and `CFLAGS`.
|
|||||||
description = "A pythonic wrapper around FFTW, the FFT library, presenting a unified interface for all the supported transforms";
|
description = "A pythonic wrapper around FFTW, the FFT library, presenting a unified interface for all the supported transforms";
|
||||||
homepage = http://hgomersall.github.com/pyFFTW/;
|
homepage = http://hgomersall.github.com/pyFFTW/;
|
||||||
license = with licenses; [ bsd2 bsd3 ];
|
license = with licenses; [ bsd2 bsd3 ];
|
||||||
maintainer = with maintainers; [ fridh ];
|
maintainers = with maintainers; [ fridh ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,7 @@ buildPythonApplication rec {
|
|||||||
meta = {
|
meta = {
|
||||||
description = "Command-line tool for querying PyPI and Python packages installed on your system";
|
description = "Command-line tool for querying PyPI and Python packages installed on your system";
|
||||||
homepage = https://github.com/cakebread/yolk;
|
homepage = https://github.com/cakebread/yolk;
|
||||||
maintainer = with maintainers; [];
|
maintainers = with maintainers; [];
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -28,6 +28,6 @@ buildPythonPackage rec {
|
|||||||
description = "Read and write ZIP files - backport of the zipfile module from Python 3.6";
|
description = "Read and write ZIP files - backport of the zipfile module from Python 3.6";
|
||||||
homepage = https://gitlab.com/takluyver/zipfile36;
|
homepage = https://gitlab.com/takluyver/zipfile36;
|
||||||
license = lib.licenses.psfl;
|
license = lib.licenses.psfl;
|
||||||
maintainer = lib.maintainers.fridh;
|
maintainers = lib.maintainers.fridh;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -120,9 +120,9 @@ vscode-utils.buildVscodeMarketplaceExtension {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
maintainer = [ maintainers.jraygauthier ];
|
maintainers = [ maintainers.jraygauthier ];
|
||||||
# A 32 bit linux would also be possible with some effort (specific download of binaries +
|
# A 32 bit linux would also be possible with some effort (specific download of binaries +
|
||||||
# patching of the elf files with 32 bit interpreter).
|
# patching of the elf files with 32 bit interpreter).
|
||||||
platforms = [ "x86_64-linux" ];
|
platforms = [ "x86_64-linux" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -36,6 +36,6 @@ vscode-utils.buildVscodeMarketplaceExtension {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainer = [ maintainers.jraygauthier ];
|
maintainers = [ maintainers.jraygauthier ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user