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

Commits on Jun 11, 2019

  1. Copy the full SHA
    74617e5 View commit details
  2. Verified

    This commit was signed with the committer’s verified signature.
    pjanotti Paulo Janotti
    Copy the full SHA
    6c3550f View commit details
  3. Partially verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
    Copy the full SHA
    28915d1 View commit details
  4. Verified

    This commit was signed with the committer’s verified signature.
    magneticstain Josh Carlson
    Copy the full SHA
    9b97400 View commit details

Commits on Jun 12, 2019

  1. Merge pull request #62991 from romildo/upd.papirus-icon-theme

     papirus-icon-theme: 20190501 -> 20190521
    worldofpeace authored Jun 12, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    magneticstain Josh Carlson
    Copy the full SHA
    20fa419 View commit details
Showing with 7 additions and 5 deletions.
  1. +7 −5 pkgs/data/icons/papirus-icon-theme/default.nix
12 changes: 7 additions & 5 deletions pkgs/data/icons/papirus-icon-theme/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, gtk3 }:

stdenv.mkDerivation rec {
name = "papirus-icon-theme-${version}";
version = "20190501";
pname = "papirus-icon-theme";
version = "20190521";

src = fetchFromGitHub {
owner = "PapirusDevelopmentTeam";
repo = "papirus-icon-theme";
repo = pname;
rev = version;
sha256 = "1sdzbvlzzg42vqahjqcsj6v87y1xhchw7bgiv8jgwd2n4l3gg2zy";
sha256 = "192s14bf2ni46jkiifbsl82qy1miy8fnxs2fpqwf6s6jlv9x4zxs";
};

nativeBuildInputs = [ gtk3 ];
@@ -28,6 +28,8 @@ stdenv.mkDerivation rec {
description = "Papirus icon theme";
homepage = https://github.com/PapirusDevelopmentTeam/papirus-icon-theme;
license = licenses.lgpl3;
platforms = platforms.all;
# darwin gives hash mismatch in source, probably because of file names differing only in case
platforms = platforms.linux;
maintainers = with maintainers; [ romildo ];
};
}