2024-07-01 09:59:42 -03:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenvNoCC,
|
|
|
|
fetchFromGitHub,
|
|
|
|
gitUpdater,
|
|
|
|
gdk-pixbuf,
|
|
|
|
gtk-engine-murrine,
|
|
|
|
gtk_engines,
|
|
|
|
librsvg,
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
|
|
pname = "marwaita-mint";
|
2025-01-07 05:40:50 +00:00
|
|
|
version = "24";
|
2024-07-01 09:59:42 -03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "darkomarko42";
|
|
|
|
repo = "marwaita-mint";
|
2025-04-08 02:51:45 -04:00
|
|
|
rev = finalAttrs.version;
|
2025-01-07 05:40:50 +00:00
|
|
|
hash = "sha256-Bvo4IRE1yXu4SDvyDY8mrMyZivqYEVQwkdSH+UZruSI=";
|
2024-07-01 09:59:42 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gdk-pixbuf
|
|
|
|
gtk_engines
|
|
|
|
librsvg
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedUserEnvPkgs = [
|
|
|
|
gtk-engine-murrine
|
|
|
|
];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/themes
|
|
|
|
cp -a Marwaita* $out/share/themes
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru.updateScript = gitUpdater { };
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Variation for marwaita GTK theme based on linux mint color scheme";
|
|
|
|
homepage = "https://www.pling.com/p/1674243";
|
|
|
|
license = lib.licenses.gpl3Only;
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = with lib.maintainers; [ romildo ];
|
|
|
|
};
|
|
|
|
})
|