forked from mirrors/nixpkgs
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:
parent
6a90b88d27
commit
5e73d5d8ab
33
pkgs/data/icons/numix-icon-theme-square/default.nix
Normal file
33
pkgs/data/icons/numix-icon-theme-square/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue