lol

Metadata

svn path=/nixpkgs/trunk/; revision=23963

+11
+5
pkgs/development/compilers/aspectj/default.nix
··· 11 11 12 12 inherit jre; 13 13 buildInputs = [jre]; 14 + 15 + meta = { 16 + homepage = http://www.eclipse.org/aspectj/; 17 + description = "A seamless aspect-oriented extension to the Java programming language"; 18 + }; 14 19 }
+1
pkgs/servers/http/4store/default.nix
··· 37 37 38 38 meta = { 39 39 description = "SparQL query server (RDF storage)"; 40 + homepage = http://4store.org/; 40 41 maintainers = with a.lib.maintainers; 41 42 [ 42 43 raskin
+5
pkgs/tools/misc/bc/default.nix
··· 12 12 configureFlags = "--with-readline"; 13 13 14 14 buildInputs = [flex readline]; 15 + 16 + meta = { 17 + description = "GNU software calculator"; 18 + homepage = http://www.gnu.org/software/bc/; 19 + }; 15 20 }