numix-icon-theme-square: init at 2016-11-23 (#20988)

Travis reports hash mismatch during the darwin build, although the hash has been obtained using 'nix-prefetch-url' (on NixOS). Exclude darwin from platforms until the cause is identified.
This commit is contained in:
José Romildo Malaquias 2016-12-08 13:07:53 -02:00 committed by Joachim F
parent 6a90b88d27
commit 5e73d5d8ab
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ stdenv, fetchFromGitHub, numix-icon-theme }:
stdenv.mkDerivation rec {
version = "2016-11-23";
package-name = "numix-icon-theme-square";
name = "${package-name}-${version}";
src = fetchFromGitHub {
owner = "numixproject";
repo = package-name;
rev = "1c30eb02aea3d95c49f95c212702b56e93ac9043";
sha256 = "1d2car4dsh1dnim9jlakm035ydqd1f115cagm6zm8gwa5w9annag";
};
buildInputs = [ numix-icon-theme ];
dontBuild = true;
installPhase = ''
mkdir -p $out/share/icons
cp -a Numix-Square{,-Light} $out/share/icons/
'';
meta = with stdenv.lib; {
description = "Numix icon theme (square version)";
homepage = https://numixproject.org;
license = licenses.gpl3;
platforms = with platforms; allBut darwin;
maintainers = with maintainers; [ romildo ];
};
}

View file

@ -11908,6 +11908,8 @@ in
numix-icon-theme-circle = callPackage ../data/icons/numix-icon-theme-circle { };
numix-icon-theme-square = callPackage ../data/icons/numix-icon-theme-square { };
oldstandard = callPackage ../data/fonts/oldstandard { };
oldsindhi = callPackage ../data/fonts/oldsindhi { };