Merge staging-next into staging

This commit is contained in:
Frederik Rietdijk
2020-06-19 10:49:25 +02:00
89 changed files with 2923 additions and 775 deletions
+25
View File
@@ -2,6 +2,7 @@
, stdenvNoCC
, lib
, fetchFromGitHub
, fetchurl
, fetchzip
, optipng
, cairo
@@ -146,4 +147,28 @@ in
maintainers = with maintainers; [ mathnerd314 ];
};
};
noto-fonts-emoji-blob-bin = stdenv.mkDerivation rec {
pname = "noto-fonts-emoji-blob-bin";
version = "2019-06-14-Emoji-12";
src = fetchurl {
url = "https://github.com/C1710/blobmoji/releases/download/v${version}/Blobmoji.ttf";
sha256 = "0snvymglmvpnfgsriw2cnnqm0f4llav0jvzir6mpd17mqqhhabbh";
};
dontUnpack = true;
installPhase = ''
install -D $src $out/share/fonts/blobmoji/Blobmoji.ttf
'';
meta = with stdenv.lib; {
description = "Noto Emoji with extended Blob support";
homepage = https://github.com/C1710/blobmoji;
license = with licenses; [ ofl asl20 ];
platforms = platforms.all;
maintainers = with maintainers; [ rileyinman ];
};
};
}
+2 -2
View File
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "matcha-gtk-theme";
version = "2020-05-24";
version = "2020-06-18";
src = fetchFromGitHub {
owner = "vinceliuice";
repo = pname;
rev = version;
sha256 = "186ypnkyaqjw671ny363xmixw6zdvrgj9xvmsrdgr8i0h3z8qwr8";
sha256 = "1hgwlzyfxl8yw93r0vsnvi51a4k5bn5qw1axhldy5l928qhmd5x7";
};
buildInputs = [ gdk-pixbuf librsvg ];