2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv
|
2020-11-03 02:18:15 +00:00
|
|
|
, fetchFromGitLab
|
|
|
|
, cmake
|
|
|
|
, extra-cmake-modules
|
|
|
|
, gtk3
|
|
|
|
, plasma-framework
|
|
|
|
, kwindowsystem
|
|
|
|
, hicolor-icon-theme
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
pname = "maia-icon-theme";
|
|
|
|
version = "2018-02-24";
|
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "gitlab.manjaro.org";
|
|
|
|
group = "artwork";
|
|
|
|
owner = "themes";
|
|
|
|
repo = "maia";
|
|
|
|
rev = "b61312cc80cb9d12b0d8a55b3e61668eb6b77d2d";
|
|
|
|
sha256 = "1g98snlh96z4sqw9sfd7fxgamh45pcj3lh1kcmng7mirvrcn2pam";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
extra-cmake-modules
|
|
|
|
gtk3
|
2020-11-03 02:18:15 +00:00
|
|
|
plasma-framework
|
|
|
|
kwindowsystem
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
hicolor-icon-theme
|
|
|
|
];
|
|
|
|
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
|
2021-02-19 19:06:45 +00:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
2020-05-03 17:38:23 +00:00
|
|
|
postInstall = ''
|
2020-04-24 23:36:52 +00:00
|
|
|
for theme in $out/share/icons/*; do
|
|
|
|
gtk-update-icon-cache $theme
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Icons based on Breeze and Super Flat Remix";
|
|
|
|
homepage = "https://gitlab.manjaro.org/artwork/themes/maia";
|
|
|
|
license = licenses.lgpl3;
|
|
|
|
maintainers = with maintainers; [ mounium ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|