Merge pull request #202451 from SuperSandro2000/maintainer-cleanup

This commit is contained in:
Sandro 2022-11-24 03:01:36 +01:00 committed by GitHub
commit 878cb61054
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib, stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "senv";
@ -20,5 +20,6 @@ buildGoModule rec {
homepage = "https://github.com/SpectralOps/senv";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
broken = stdenv.isDarwin; # needs golang.org/x/sys bump
};
}

View file

@ -29,6 +29,6 @@ buildGoModule rec {
description = "Build a digital writing community";
homepage = "https://github.com/writeas/writefreely";
license = licenses.agpl3Only;
maintainers = with maintainers; [ SuperSandro2000 ];
maintainers = with maintainers; [ ];
};
}

View file

@ -1,4 +1,5 @@
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
, installShellFiles
@ -41,5 +42,6 @@ buildGoModule rec {
'';
license = licenses.mit;
maintainers = with maintainers; [ fgaz SuperSandro2000 ];
broken = stdenv.isDarwin; # needs golang.org/x/sys bump
};
}