Use common licence attributes from lib/licenses.nix
Many (less easily automatically converted) old-style strings remain. Where there was any possible ambiguity about the exact version or variant intended, nothing was changed. IANAL, nor a search robot. Use `with stdenv.lib` wherever it makes sense.
This commit is contained in:
@@ -15,11 +15,11 @@ stdenv.mkDerivation rec {
|
||||
cp dog $out/bin
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://lwn.net/Articles/421072/";
|
||||
description = "a cat replacement";
|
||||
license="GPLv2+";
|
||||
maintainers = with stdenv.lib.maintainers; [qknight];
|
||||
platforms = with stdenv.lib.platforms; all;
|
||||
description = "cat replacement";
|
||||
license = with licenses; gpl2Plus;
|
||||
maintainers = with maintainers; [ qknight ];
|
||||
platforms = with platforms; all;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user