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.1 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";
version = "unstable-2022-04-07"; # 22.04.3.1 is broken
2019-09-08 10:16:41 +00:00
src = fetchFromGitHub {
owner = "ubuntu";
repo = "yaru";
rev = "9bdbf66bf3718c6595c7a15ef4698ba471a36526";
sha256 = "02f6m0jxnsczw3y7v7bqdihxa33sx2z93yn3j8w4z9r9fv2pn06b";
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
};
}