diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-03-30 15:00:41 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-03-30 15:19:32 +0100 |
commit | 154f1f0937754fafac0c6288dd458b66b332e6bb (patch) | |
tree | 98c286b3d2c17b3149220544497346d4ac7e611e | |
parent | a7646bc5e17a829d23519d0b199a576fb1edbd04 (diff) | |
download | guix-154f1f0937754fafac0c6288dd458b66b332e6bb.tar.gz guix-154f1f0937754fafac0c6288dd458b66b332e6bb.zip |
packages: Remove 'maintainers' field.
This field was never used and doesn't match the way we collectively
maintain packages.
* guix/packages.scm (<package>)[maintainers]: Remove.
-rw-r--r-- | guix/packages.scm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/guix/packages.scm b/guix/packages.scm index 1d3d99ba65..c2981dda8b 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -84,7 +84,6 @@ package-license package-home-page package-supported-systems - package-maintainers package-properties package-location hidden-package @@ -286,7 +285,6 @@ name of its URI." (home-page package-home-page) (supported-systems package-supported-systems ; list of strings (default %supported-systems)) - (maintainers package-maintainers (default '())) (properties package-properties (default '())) ; alist for anything else |