a2bb936e2a
* yaru-theme: 20.10.1 -> 20.10.6.1
* yaru-theme: update licenses
based on 1b74404c40/debian/copyright
33 lines
1018 B
Nix
33 lines
1018 B
Nix
{ lib, stdenv, fetchFromGitHub, meson, sassc, pkg-config, glib, ninja,
|
|
python3, gtk3, gnome3, gtk-engine-murrine, humanity-icon-theme, hicolor-icon-theme }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "yaru";
|
|
version = "20.10.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ubuntu";
|
|
repo = "yaru";
|
|
rev = version;
|
|
sha256 = "0kcmxfz2rfav7aj5v1vv335vqzyj0n53lbhwx0g6gxxfi0x3vv6v";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson sassc pkg-config glib ninja python3 ];
|
|
buildInputs = [ gtk3 gnome3.gnome-themes-extra ];
|
|
propagatedBuildInputs = [ humanity-icon-theme hicolor-icon-theme ];
|
|
|
|
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
meta = with lib; {
|
|
description = "Ubuntu community theme 'yaru' - default Ubuntu theme since 18.10";
|
|
homepage = "https://github.com/ubuntu/yaru";
|
|
license = with licenses; [ cc-by-sa-40 gpl3Plus lgpl21Only lgpl3Only ];
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.jD91mZM2 ];
|
|
};
|
|
}
|