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.

authored by José Romildo Malaquias and committed by Joachim F 5e73d5d8 6a90b88d

+35
+33
pkgs/data/icons/numix-icon-theme-square/default.nix
···
··· 1 + { stdenv, fetchFromGitHub, numix-icon-theme }: 2 + 3 + stdenv.mkDerivation rec { 4 + version = "2016-11-23"; 5 + 6 + package-name = "numix-icon-theme-square"; 7 + 8 + name = "${package-name}-${version}"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "numixproject"; 12 + repo = package-name; 13 + rev = "1c30eb02aea3d95c49f95c212702b56e93ac9043"; 14 + sha256 = "1d2car4dsh1dnim9jlakm035ydqd1f115cagm6zm8gwa5w9annag"; 15 + }; 16 + 17 + buildInputs = [ numix-icon-theme ]; 18 + 19 + dontBuild = true; 20 + 21 + installPhase = '' 22 + mkdir -p $out/share/icons 23 + cp -a Numix-Square{,-Light} $out/share/icons/ 24 + ''; 25 + 26 + meta = with stdenv.lib; { 27 + description = "Numix icon theme (square version)"; 28 + homepage = https://numixproject.org; 29 + license = licenses.gpl3; 30 + platforms = with platforms; allBut darwin; 31 + maintainers = with maintainers; [ romildo ]; 32 + }; 33 + }
+2
pkgs/top-level/all-packages.nix
··· 11908 11909 numix-icon-theme-circle = callPackage ../data/icons/numix-icon-theme-circle { }; 11910 11911 oldstandard = callPackage ../data/fonts/oldstandard { }; 11912 11913 oldsindhi = callPackage ../data/fonts/oldsindhi { };
··· 11908 11909 numix-icon-theme-circle = callPackage ../data/icons/numix-icon-theme-circle { }; 11910 11911 + numix-icon-theme-square = callPackage ../data/icons/numix-icon-theme-square { }; 11912 + 11913 oldstandard = callPackage ../data/fonts/oldstandard { }; 11914 11915 oldsindhi = callPackage ../data/fonts/oldsindhi { };