Unverified Commit 925c0fa5 authored by Anderson Torres's avatar Anderson Torres Committed by GitHub
Browse files

Merge pull request #197322 from atorres1985-contrib/cleanup-maintainers

Cleanup maintainers
parents 419fcc78 8594b1cc
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -13730,12 +13730,6 @@
    githubId = 2164118;
    name = "Tobias Bora";
  };
  tohl = {
    email = "tom@logand.com";
    github = "tohl";
    githubId = 12159013;
    name = "Tomas Hlavaty";
  };
  tokudan = {
    email = "git@danielfrank.net";
    github = "tokudan";
+1 −1
Original line number Diff line number Diff line
@@ -119,7 +119,7 @@ stdenv.mkDerivation rec {
  meta = with lib; {
    description = "Clozure Common Lisp";
    homepage    = "https://ccl.clozure.com/";
    maintainers = with maintainers; [ raskin tohl ];
    maintainers = with maintainers; [ raskin ];
    platforms   = attrNames options;
    # assembler failures during build, x86_64-darwin broken since 2020-10-14
    broken      = (stdenv.isDarwin && stdenv.isx86_64);
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ stdenv.mkDerivation {
    '';
    license = lib.licenses.free;		# public domain
    homepage = "http://www.cons.org/cmucl/";
    maintainers = [lib.maintainers.tohl];
    maintainers = [ ];
    platforms = lib.platforms.linux;
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -60,6 +60,6 @@ stdenv.mkDerivation rec {
    homepage = "https://common-lisp.net/project/mkcl/";
    license = licenses.lgpl2Plus;
    platforms = platforms.linux;
    maintainers = with maintainers; [ tohl ];
    maintainers = with maintainers; [ ];
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -78,7 +78,7 @@ stdenv.mkDerivation rec {
    description = "Lisp compiler";
    homepage = "http://www.sbcl.org";
    license = licenses.publicDomain; # and FreeBSD
    maintainers = [maintainers.raskin maintainers.tohl];
    maintainers = [ maintainers.raskin ];
    platforms = attrNames options;
  };
}
Loading