add missing meta data

This commit is contained in:
Christine Koppelt 2019-10-08 20:54:38 +02:00
parent d7340fe232
commit 854c969b57
5 changed files with 13 additions and 2 deletions

View file

@ -26,7 +26,8 @@ stdenv.mkDerivation rec {
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = https://sourceforge.net/projects/nedit; homepage = "https://sourceforge.net/projects/nedit";
description = "A fast, compact Motif/X11 plain text editor";
platforms = with platforms; linux ++ darwin; platforms = with platforms; linux ++ darwin;
license = licenses.gpl2; license = licenses.gpl2;
}; };

View file

@ -28,6 +28,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
license = licenses.gpl2; license = licenses.gpl2;
description = "A hex editor";
maintainers = with maintainers; [ peterhoeg bkchr ]; maintainers = with maintainers; [ peterhoeg bkchr ];
platforms = platforms.linux; platforms = platforms.linux;
}; };

View file

@ -17,5 +17,7 @@ buildGoPackage rec {
meta = { meta = {
license = stdenv.lib.licenses.isc; license = stdenv.lib.licenses.isc;
homepage = "https://github.com/schachmat/wego";
description = "Weather app for the terminal";
}; };
} }

View file

@ -11,7 +11,8 @@ stdenv.mkDerivation rec {
preBuild="makeFlagsArray+=( PREFIX=$out )"; preBuild="makeFlagsArray+=( PREFIX=$out )";
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://piumarta.com/software/peg/; homepage = "http://piumarta.com/software/peg/";
description = "Tools for generating recursive-descent parsers: programs that perform pattern matching on text";
platforms = platforms.all; platforms = platforms.all;
license = licenses.mit; license = licenses.mit;
}; };

View file

@ -16,4 +16,10 @@ buildGoPackage rec {
}; };
goDeps = ./deps.nix; goDeps = ./deps.nix;
meta = {
homepage = "https://github.com/martingallagher/gawp";
description = "A simple, configurable, file watching, job execution tool";
license = stdenv.lib.licenses.asl20;
};
} }