lol

dejagnu: Add metadata

+4 -4
+4 -4
pkgs/development/tools/misc/dejagnu/default.nix
··· 32 32 --prefix PATH ":" "${expect}/bin" 33 33 ''; 34 34 35 - meta = { 35 + meta = with stdenv.lib; { 36 36 description = "Framework for testing other programs"; 37 37 38 38 longDescription = '' ··· 47 47 ''; 48 48 49 49 homepage = http://www.gnu.org/software/dejagnu/; 50 - license = stdenv.lib.licenses.gpl2Plus; 50 + license = licenses.gpl2Plus; 51 51 52 - platforms = stdenv.lib.platforms.linux; 53 - maintainers = [ ]; 52 + platforms = platforms.linux; 53 + maintainers = with maintainers; [ wkennington ]; 54 54 }; 55 55 }