bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
44 lines
1,023 B
Nix
44 lines
1,023 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, meson
|
|
, sassc
|
|
, pkg-config
|
|
, glib
|
|
, ninja
|
|
, python3
|
|
, gtk3
|
|
, gnome
|
|
, gtk-engine-murrine
|
|
, humanity-icon-theme
|
|
, hicolor-icon-theme
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "yaru";
|
|
version = "24.04.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ubuntu";
|
|
repo = "yaru";
|
|
rev = version;
|
|
hash = "sha256-Z0qW3hW5Sije5Hn6OB9f5M6xnmMmRnP76p0kjiQZznw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson sassc pkg-config glib ninja python3 ];
|
|
buildInputs = [ gtk3 gnome.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 = with maintainers; [ moni ];
|
|
};
|
|
}
|