Skip to content

Commit

Permalink
treewide: use lib.maintainers for meta.maintainers
Browse files Browse the repository at this point in the history
  • Loading branch information
fpletz committed Jan 20, 2017
1 parent ea7dadc commit 9b92a07
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 9 deletions.
Expand Up @@ -26,6 +26,6 @@ python2Packages.buildPythonApplication rec {
homepage = http://tortoisehg.bitbucket.org/;
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
maintainers = [ "abcz2.uprola@gmail.com" ];
maintainers = with lib.maintainers; [ danbst ];
};
}
2 changes: 1 addition & 1 deletion pkgs/applications/window-managers/i3/blocks-gaps.nix
Expand Up @@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
description = "A flexible scheduler for your i3bar blocks -- this is a fork to use with i3-gaps";
homepage = https://github.com/Airblader/i3blocks-gaps;
license = licenses.gpl3;
maintainers = [ "carlsverre" ];
maintainers = with maintainers; [ carlsverre ];
platforms = platforms.linux;
};
}
1 change: 0 additions & 1 deletion pkgs/applications/window-managers/i3/blocks.nix
Expand Up @@ -16,7 +16,6 @@ stdenv.mkDerivation rec {
description = "A flexible scheduler for your i3bar blocks";
homepage = https://github.com/vivien/i3blocks;
license = licenses.gpl3;
maintainers = [ "MindTooth" ];
platforms = with platforms; freebsd ++ linux;
};
}
1 change: 0 additions & 1 deletion pkgs/misc/emulators/cdemu/base.nix
Expand Up @@ -32,6 +32,5 @@ in stdenv.mkDerivation ({
homepage = http://cdemu.sourceforge.net/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ "Rok Mandeljc <mrok AT users DOT sourceforge DOT net>" ];
};
} // drvParams)
1 change: 0 additions & 1 deletion pkgs/tools/text/reckon/default.nix
Expand Up @@ -22,7 +22,6 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Flexibly import bank account CSV files into Ledger for command line accounting";
license = licenses.mit;
maintainers = [ "mckean.kylej@gmail.com" ];
platforms = platforms.unix;
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/text/uni2ascii/default.nix
Expand Up @@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
It also provides ways of converting non-ASCII characters to
similar ASCII characters, e.g. by stripping diacritics.
'';
maintainers = [ "cillian.deroiste@gmail.com" ];
maintainers = with stdenv.lib.maintainers; [ goibhniu ];
platforms = stdenv.lib.platforms.linux;
};
}
6 changes: 3 additions & 3 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -7851,7 +7851,7 @@ in {
meta = with stdenv.lib; {
description = "Accessing and Modifying INI files";
license = licenses.mit;
maintainers = [ "abcz2.uprola@gmail.com" ];
maintainers = with maintainers; [ danbst ];
};
};

Expand Down Expand Up @@ -22237,7 +22237,7 @@ in {
meta = with stdenv.lib; {
description = "A Python binding to QScintilla, Qt based text editing control";
license = licenses.lgpl21Plus;
maintainers = [ "abcz2.uprola@gmail.com" ];
maintainers = with maintainers; [ danbst ];
platforms = platforms.linux;
};
};
Expand Down Expand Up @@ -29105,7 +29105,7 @@ EOF
meta = {
homepage = https://developers.google.com/storage/docs/gsutil;
description = "Google Cloud Storage Tool";
maintainers = [ "Russell O'Connor <oconnorr@google.com>" ];
maintainers = with maintainers; [ roconnor ];
license = licenses.asl20;
};
doCheck = false;
Expand Down

0 comments on commit 9b92a07

Please sign in to comment.