mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
48 lines
1.0 KiB
Nix
48 lines
1.0 KiB
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 = "21.10.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ubuntu";
|
|
repo = "yaru";
|
|
rev = version;
|
|
sha256 = "sha256-VN/jgKGM2Th+2nv91vEz47kmQiBx8xAiEVbtXwhZg6U=";
|
|
};
|
|
|
|
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; [ fortuneteller2k maxeaubrey ];
|
|
};
|
|
}
|