Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3171df49b595
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c40d1486cc93
Choose a head ref
  • 2 commits
  • 5 files changed
  • 2 contributors

Commits on Oct 8, 2019

  1. add missing meta data

    cko committed Oct 8, 2019
    Copy the full SHA
    854c969 View commit details
  2. Merge pull request #70771 from cko/add-descriptions

    Add missing descriptions
    markuskowa authored Oct 8, 2019
    Copy the full SHA
    c40d148 View commit details
3 changes: 2 additions & 1 deletion pkgs/applications/editors/nedit/default.nix
Original file line number Diff line number Diff line change
@@ -26,7 +26,8 @@ stdenv.mkDerivation rec {
'';

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;
license = licenses.gpl2;
};
1 change: 1 addition & 0 deletions pkgs/applications/editors/okteta/default.nix
Original file line number Diff line number Diff line change
@@ -28,6 +28,7 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
license = licenses.gpl2;
description = "A hex editor";
maintainers = with maintainers; [ peterhoeg bkchr ];
platforms = platforms.linux;
};
2 changes: 2 additions & 0 deletions pkgs/applications/misc/wego/default.nix
Original file line number Diff line number Diff line change
@@ -17,5 +17,7 @@ buildGoPackage rec {

meta = {
license = stdenv.lib.licenses.isc;
homepage = "https://github.com/schachmat/wego";
description = "Weather app for the terminal";
};
}
3 changes: 2 additions & 1 deletion pkgs/development/tools/parsing/peg/default.nix
Original file line number Diff line number Diff line change
@@ -11,7 +11,8 @@ stdenv.mkDerivation rec {
preBuild="makeFlagsArray+=( PREFIX=$out )";

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;
license = licenses.mit;
};
6 changes: 6 additions & 0 deletions pkgs/tools/misc/gawp/default.nix
Original file line number Diff line number Diff line change
@@ -16,4 +16,10 @@ buildGoPackage rec {
};

goDeps = ./deps.nix;

meta = {
homepage = "https://github.com/martingallagher/gawp";
description = "A simple, configurable, file watching, job execution tool";
license = stdenv.lib.licenses.asl20;
};
}