2021-06-17 17:48:50 +00: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 10:16:41 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "yaru";
|
2022-10-15 21:14:49 +00:00
|
|
|
version = "22.10.3";
|
2019-09-08 10:16:41 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ubuntu";
|
|
|
|
repo = "yaru";
|
2022-04-16 12:02:55 +00:00
|
|
|
rev = version;
|
2022-10-15 21:14:49 +00:00
|
|
|
hash = "sha256-ZWt9I/Q5p6fAkheR6QlZI1DI/HL8bSNmHuO5+V3vunY=";
|
2019-09-08 10:16:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ meson sassc pkg-config glib ninja python3 ];
|
2021-05-07 21:18:14 +00:00
|
|
|
buildInputs = [ gtk3 gnome.gnome-themes-extra ];
|
2020-04-16 13:50:49 +00:00
|
|
|
propagatedBuildInputs = [ humanity-icon-theme hicolor-icon-theme ];
|
2019-09-08 10:16:41 +00:00
|
|
|
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
|
|
|
|
2020-04-16 13:50:49 +00:00
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
|
2019-09-08 10:16:41 +00:00
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-09-08 10:16:41 +00:00
|
|
|
description = "Ubuntu community theme 'yaru' - default Ubuntu theme since 18.10";
|
2020-04-01 01:11:51 +00: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 10:16:41 +00:00
|
|
|
platforms = platforms.linux;
|
2021-07-18 19:23:26 +00:00
|
|
|
maintainers = with maintainers; [ fortuneteller2k maxeaubrey ];
|
2019-09-08 10:16:41 +00:00
|
|
|
};
|
|
|
|
}
|