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
68 lines
1.2 KiB
Nix
68 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
parallel,
|
|
sassc,
|
|
inkscape,
|
|
libxml2,
|
|
glib,
|
|
gdk-pixbuf,
|
|
librsvg,
|
|
gtk-engine-murrine,
|
|
gnome-shell,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "adapta-gtk-theme";
|
|
version = "3.95.0.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "adapta-project";
|
|
repo = "adapta-gtk-theme";
|
|
tag = version;
|
|
sha256 = "19skrhp10xx07hbd0lr3d619vj2im35d8p9rmb4v4zacci804q04";
|
|
};
|
|
|
|
preferLocalBuild = true;
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
parallel
|
|
sassc
|
|
inkscape
|
|
libxml2
|
|
glib.dev
|
|
gnome-shell
|
|
];
|
|
|
|
buildInputs = [
|
|
gdk-pixbuf
|
|
librsvg
|
|
];
|
|
|
|
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
configureFlags = [
|
|
"--disable-gtk_legacy"
|
|
"--disable-gtk_next"
|
|
"--disable-unity"
|
|
];
|
|
|
|
meta = {
|
|
description = "Adaptive GTK theme based on Material Design Guidelines";
|
|
homepage = "https://github.com/adapta-project/adapta-gtk-theme";
|
|
license = with lib.licenses; [
|
|
gpl2
|
|
cc-by-sa-30
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ romildo ];
|
|
};
|
|
}
|