3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/data/themes/yaru/default.nix

48 lines
1 KiB
Nix
Raw Normal View History

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
buildInputs = [ gtk3 gnome.gnome-themes-extra ];
2021-06-17 18:48:50 +01:00
propagatedBuildInputs = [ humanity-icon-theme hicolor-icon-theme ];
2019-09-08 11:16:41 +01:00
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
dontDropIconThemeCache = true;
2019-09-08 11:16:41 +01:00
postPatch = "patchShebangs .";
meta = with lib; {
2019-09-08 11:16:41 +01:00
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 ];
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
};
}