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: 7fb85457cd0a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a6220c33845a
Choose a head ref
  • 5 commits
  • 4 files changed
  • 2 contributors

Commits on Nov 10, 2019

  1. Copy the full SHA
    92d66a9 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    35ab777 View commit details
  3. gputils: add missing description

    cko committed Nov 10, 2019
    Copy the full SHA
    a09f706 View commit details
  4. Copy the full SHA
    e2ef352 View commit details

Commits on Nov 12, 2019

  1. Merge pull request #73072 from cko/missing_descriptions

    treewide: add missing descriptions & homepages
    c0bw3b authored Nov 12, 2019
    Copy the full SHA
    a6220c3 View commit details
Showing with 13 additions and 2 deletions.
  1. +2 −0 pkgs/applications/audio/amarok/default.nix
  2. +2 −1 pkgs/development/tools/misc/gputils/default.nix
  3. +7 −1 pkgs/shells/oh/default.nix
  4. +2 −0 pkgs/tools/misc/peruse/default.nix
2 changes: 2 additions & 0 deletions pkgs/applications/audio/amarok/default.nix
Original file line number Diff line number Diff line change
@@ -33,6 +33,8 @@ mkDerivation rec {
enableParallelBuilding = true;

meta = with lib; {
homepage = "https://amarok.kde.org";
description = "A powerful music player with an intuitive interface";
license = licenses.gpl2;
maintainers = with maintainers; [ peterhoeg ];
};
3 changes: 2 additions & 1 deletion pkgs/development/tools/misc/gputils/default.nix
Original file line number Diff line number Diff line change
@@ -10,7 +10,8 @@ stdenv.mkDerivation rec {
};

meta = with stdenv.lib; {
homepage = https://gputils.sourceforge.io/;
homepage = "https://gputils.sourceforge.io";
description = "A collection of tools for the Microchip (TM) PIC microcontrollers. It includes gpasm, gplink, and gplib";
license = licenses.gpl2;
maintainers = with maintainers; [ yorickvp ];
platforms = platforms.linux;
8 changes: 7 additions & 1 deletion pkgs/shells/oh/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, buildGoPackage, fetchgit }:
{ stdenv, buildGoPackage, fetchgit, lib }:

buildGoPackage rec {
pname = "oh";
@@ -14,4 +14,10 @@ buildGoPackage rec {
};

goDeps = ./deps.nix;

meta = with lib;{
homepage = "https://github.com/michaelmacinnis/oh";
description = "A Unix shell";
license = stdenv.lib.licenses.mit;
};
}
2 changes: 2 additions & 0 deletions pkgs/tools/misc/peruse/default.nix
Original file line number Diff line number Diff line change
@@ -26,6 +26,8 @@ in mkDerivation {
pathsToLink = [ "/etc/xdg/peruse.knsrc"];

meta = with lib; {
homepage = "https://peruse.kde.org";
description = "A comic book reader";
license = licenses.gpl2;
maintainers = with maintainers; [ peterhoeg ];
};