nixpkgs/pkgs/data/themes/yaru/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.0 KiB
Nix
Raw Normal View History

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