Merge pull request #19567 from gnidorah/master

pakcs: add kkallio as maintainer
This commit is contained in:
Tim Steinbach 2016-10-14 22:33:18 -04:00 committed by GitHub
commit 43564312f6

View File

@ -136,10 +136,10 @@ stdenv.mkDerivation rec {
--prefix PATH ":" "${tk}/bin" \ --prefix PATH ":" "${tk}/bin" \
''; '';
meta = { meta = with stdenv.lib; {
homepage = "http://www.informatik.uni-kiel.de/~pakcs/"; homepage = "http://www.informatik.uni-kiel.de/~pakcs/";
description = "An implementation of the multi-paradigm declarative language Curry"; description = "An implementation of the multi-paradigm declarative language Curry";
license = stdenv.lib.licenses.bsd3; license = licenses.bsd3;
longDescription = '' longDescription = ''
PAKCS is an implementation of the multi-paradigm declarative language PAKCS is an implementation of the multi-paradigm declarative language
@ -153,7 +153,7 @@ stdenv.mkDerivation rec {
with dynamic web pages, prototyping embedded systems). with dynamic web pages, prototyping embedded systems).
''; '';
maintainers = [ stdenv.lib.maintainers.gnidorah ]; maintainers = with maintainers; [ kkallio gnidorah ];
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
}; };
} }