dejagnu: Add metadata

This commit is contained in:
William A. Kennington III 2015-04-30 11:48:44 -07:00
parent 6a5bf4f04e
commit f537943f27

View File

@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
--prefix PATH ":" "${expect}/bin" --prefix PATH ":" "${expect}/bin"
''; '';
meta = { meta = with stdenv.lib; {
description = "Framework for testing other programs"; description = "Framework for testing other programs";
longDescription = '' longDescription = ''
@ -47,9 +47,9 @@ stdenv.mkDerivation rec {
''; '';
homepage = http://www.gnu.org/software/dejagnu/; homepage = http://www.gnu.org/software/dejagnu/;
license = stdenv.lib.licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
maintainers = [ ]; maintainers = with maintainers; [ wkennington ];
}; };
} }