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

Commits on Dec 4, 2018

  1. zafiro-icons: 0.7.2 -> 0.7.3

    romildo committed Dec 4, 2018
    Copy the full SHA
    e728ff5 View commit details
  2. Merge pull request #51521 from romildo/upd.zafiro-icons

    zafiro-icons: 0.7.2 -> 0.7.3
    c0bw3b authored Dec 4, 2018
    Copy the full SHA
    c2dec0b View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/data/icons/zafiro-icons/default.nix
10 changes: 5 additions & 5 deletions pkgs/data/icons/zafiro-icons/default.nix
Original file line number Diff line number Diff line change
@@ -3,21 +3,21 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "zafiro-icons";
version = "0.7.2";
version = "0.7.3";

src = fetchFromGitHub {
owner = "zayronxio";
repo = pname;
rev = "v${version}";
sha256 = "1rs3wazmvidlkig5q7x1n9nz7jhfq18wps3wsplax9zcdy0hv248";
sha256 = "02q3wcklmqdy4ycyly7477q98y3mkgnpr7c78jqxvy2yr486wwyx";
};

nativeBuildInputs = [ gtk3 ];

installPhase = ''
mkdir -p $out/share/icons/Zafiro
cp -a * $out/share/icons/Zafiro
gtk-update-icon-cache "$out"/share/icons/Zafiro
mkdir -p $out/share/icons/Zafiro-icons
cp -a * $out/share/icons/Zafiro-icons
gtk-update-icon-cache "$out"/share/icons/Zafiro-icons
'';

meta = with stdenv.lib; {