2021-06-17 18:48:50 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, meson
|
|
|
|
, sassc
|
|
|
|
, pkg-config
|
|
|
|
, glib
|
|
|
|
, ninja
|
|
|
|
, python3
|
|
|
|
, gtk3
|
|
|
|
, gnome
|
|
|
|
, gtk-engine-murrine
|
|
|
|
, humanity-icon-theme
|
|
|
|
, hicolor-icon-theme
|
|
|
|
}:
|
2019-09-08 11:16:41 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "yaru";
|
2021-10-02 17:24:11 +01:00
|
|
|
version = "21.10.2";
|
2019-09-08 11:16:41 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ubuntu";
|
|
|
|
repo = "yaru";
|
|
|
|
rev = version;
|
2021-10-02 17:24:11 +01:00
|
|
|
sha256 = "sha256-VN/jgKGM2Th+2nv91vEz47kmQiBx8xAiEVbtXwhZg6U=";
|
2019-09-08 11:16:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ meson sassc pkg-config glib ninja python3 ];
|
2021-06-17 18:48:50 +01:00
|
|
|
|
2021-05-07 22:18:14 +01:00
|
|
|
buildInputs = [ gtk3 gnome.gnome-themes-extra ];
|
2021-06-17 18:48:50 +01:00
|
|
|
|
2020-04-16 14:50:49 +01:00
|
|
|
propagatedBuildInputs = [ humanity-icon-theme hicolor-icon-theme ];
|
2019-09-08 11:16:41 +01:00
|
|
|
|
|
|
|
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
|
|
|
|
2020-04-16 14:50:49 +01:00
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
|
2019-09-08 11:16:41 +01:00
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-09-08 11:16:41 +01:00
|
|
|
description = "Ubuntu community theme 'yaru' - default Ubuntu theme since 18.10";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/ubuntu/yaru";
|
2021-02-25 10:59:25 +00:00
|
|
|
license = with licenses; [ cc-by-sa-40 gpl3Plus lgpl21Only lgpl3Only ];
|
2019-09-08 11:16:41 +01:00
|
|
|
platforms = platforms.linux;
|
2021-07-18 20:23:26 +01:00
|
|
|
maintainers = with maintainers; [ fortuneteller2k maxeaubrey ];
|
2019-09-08 11:16:41 +01:00
|
|
|
};
|
|
|
|
}
|