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

Commits on Apr 14, 2020

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    deepfire Kosyrev Serge
    Copy the full SHA
    4e60f30 View commit details

Commits on Apr 15, 2020

  1. Merge pull request #85233 from romildo/upd.humanity-icon-theme

    humanity-icon-theme: init at 0.6.15
    romildo authored Apr 15, 2020
    Copy the full SHA
    cfa1718 View commit details
Showing with 46 additions and 0 deletions.
  1. +44 −0 pkgs/data/icons/humanity-icon-theme/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
44 changes: 44 additions & 0 deletions pkgs/data/icons/humanity-icon-theme/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{ stdenv, fetchurl, gtk3, gnome3, hicolor-icon-theme }:

stdenv.mkDerivation rec {
pname = "humanity-icon-theme";
version = "0.6.15";

src = fetchurl {
url = "https://launchpad.net/ubuntu/+archive/primary/+files/${pname}_${version}.tar.xz";
sha256 = "19ja47468s3jfabvakq9wknyfclfr31a9vd11p3mhapfq8jv9g4x";
};

nativeBuildInputs = [
gtk3
];

propagatedBuildInputs = [
gnome3.adwaita-icon-theme
hicolor-icon-theme
];

dontDropIconThemeCache = true;

installPhase = ''
runHook preInstall
mkdir -p $out/share/icons
cp -a Humanity* $out/share/icons
rm $out/share/icons/*/{AUTHORS,CONTRIBUTORS,COPYING}
for theme in $out/share/icons/*; do
gtk-update-icon-cache $theme
done
runHook postInstall
'';

meta = with stdenv.lib; {
description = "Humanity icons from Ubuntu";
homepage = "https://launchpad.net/humanity/";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -17820,6 +17820,8 @@ in

hermit = callPackage ../data/fonts/hermit { };

humanity-icon-theme = callPackage ../data/icons/humanity-icon-theme { };

hyperscrypt-font = callPackage ../data/fonts/hyperscrypt { };

ia-writer-duospace = callPackage ../data/fonts/ia-writer-duospace { };