2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2020-05-17 15:14:18 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, gdk-pixbuf
|
|
|
|
, librsvg
|
|
|
|
, gtk-engine-murrine
|
|
|
|
, gtk3
|
|
|
|
, gnome3
|
|
|
|
, gnome-icon-theme
|
|
|
|
, numix-icon-theme-circle
|
|
|
|
, hicolor-icon-theme
|
|
|
|
}:
|
2020-01-31 17:51:27 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "canta-theme";
|
2020-05-17 15:07:32 +01:00
|
|
|
version = "2020-05-17";
|
2020-01-31 17:51:27 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vinceliuice";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-05-17 15:07:32 +01:00
|
|
|
sha256 = "0b9ffkw611xxb2wh43sjqla195jp0ygxph5a8dvifkxdw6nxc2y0";
|
2020-01-31 17:51:27 +00:00
|
|
|
};
|
|
|
|
|
2020-05-17 15:14:18 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
gtk3
|
|
|
|
];
|
2020-05-17 15:08:57 +01:00
|
|
|
|
2020-05-17 15:14:18 +01:00
|
|
|
buildInputs = [
|
|
|
|
gdk-pixbuf
|
|
|
|
librsvg
|
|
|
|
];
|
2020-01-31 17:51:27 +00:00
|
|
|
|
2020-05-17 15:14:18 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
gnome3.adwaita-icon-theme
|
|
|
|
gnome-icon-theme
|
|
|
|
numix-icon-theme-circle
|
|
|
|
hicolor-icon-theme
|
|
|
|
];
|
2020-05-17 15:08:57 +01:00
|
|
|
|
2020-05-17 15:14:18 +01:00
|
|
|
propagatedUserEnvPkgs = [
|
|
|
|
gtk-engine-murrine
|
|
|
|
];
|
2020-01-31 17:51:27 +00:00
|
|
|
|
2020-05-17 15:08:57 +01:00
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
|
2020-01-31 17:51:27 +00:00
|
|
|
installPhase = ''
|
|
|
|
patchShebangs .
|
|
|
|
mkdir -p $out/share/themes
|
2020-05-17 15:08:57 +01:00
|
|
|
name= ./install.sh --dest $out/share/themes
|
2020-01-31 17:51:27 +00:00
|
|
|
rm $out/share/themes/*/{AUTHORS,COPYING}
|
2020-05-17 15:08:57 +01:00
|
|
|
install -D -t $out/share/backgrounds wallpaper/canta-wallpaper.svg
|
|
|
|
mkdir -p $out/share/icons
|
|
|
|
cp -a icons/Canta $out/share/icons
|
|
|
|
gtk-update-icon-cache $out/share/icons/Canta
|
2020-01-31 17:51:27 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-01-31 17:51:27 +00:00
|
|
|
description = "Flat Design theme for GTK based desktop environments";
|
|
|
|
homepage = "https://github.com/vinceliuice/Canta-theme";
|
|
|
|
license = licenses.gpl2;
|
2020-11-04 16:44:50 +00:00
|
|
|
platforms = platforms.linux; # numix-icon-theme-circle unavailable in darwin
|
2020-01-31 17:51:27 +00:00
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|