Files
nixpkgs/pkgs/by-name/ya/yaru-theme/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

64 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
meson,
sassc,
pkg-config,
glib,
ninja,
python3,
gtk3,
gnome-themes-extra,
gtk-engine-murrine,
humanity-icon-theme,
hicolor-icon-theme,
}:
stdenv.mkDerivation rec {
pname = "yaru";
version = "25.10.2";
src = fetchFromGitHub {
owner = "ubuntu";
repo = "yaru";
rev = version;
hash = "sha256-3NTqRmAdO3+9e9B7Fe0B9PPeMUBAmin+51cfqAijV0w=";
};
nativeBuildInputs = [
meson
sassc
pkg-config
glib
ninja
python3
];
buildInputs = [
gtk3
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 ];
};
}