stow: add sarcasticadmin as maintainer (#181781)

* Adding sarcasticadmin as maintainer of stow pkg

* Update pkgs/tools/misc/stow/default.nix

Co-authored-by: Winter <winter@winter.cafe>
This commit is contained in:
Robert James Hernandez 2022-07-17 02:17:04 +00:00 committed by GitHub
parent 0831052156
commit 377cb19b00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ stdenv.mkDerivation {
doCheck = true;
meta = {
meta = with lib; {
description = "A tool for managing the installation of multiple software packages in the same run-time directory tree";
longDescription = ''
@ -29,8 +29,9 @@ stdenv.mkDerivation {
as .../share, .../man, and so on.
'';
license = lib.licenses.gpl3Plus;
license = licenses.gpl3Plus;
homepage = "https://www.gnu.org/software/stow/";
platforms = lib.platforms.all;
maintainers = with maintainers; [ sarcasticadmin ];
platforms = platforms.all;
};
}