nixpkgs/pkgs/data/themes/canta/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.4 KiB
Nix
Raw Normal View History

2021-09-08 14:01:39 +02:00
{ lib
, stdenv
2020-05-17 16:14:18 +02:00
, fetchFromGitHub
, gdk-pixbuf
, librsvg
, gtk-engine-murrine
, gtk3
, gnome
2020-05-17 16:14:18 +02:00
, gnome-icon-theme
, numix-icon-theme-circle
, hicolor-icon-theme
}:
2020-01-31 18:51:27 +01:00
stdenv.mkDerivation rec {
pname = "canta-theme";
2021-09-08 14:01:39 +02:00
version = "2021-09-08";
2020-01-31 18:51:27 +01:00
src = fetchFromGitHub {
owner = "vinceliuice";
repo = pname;
rev = version;
2021-09-08 14:01:39 +02:00
sha256 = "05h42nrggb6znzjcbh4lqqfcm41h4r85n3vwimp3l4lq5p90igr2";
2020-01-31 18:51:27 +01:00
};
2020-05-17 16:14:18 +02:00
nativeBuildInputs = [
gtk3
];
2020-05-17 16:08:57 +02:00
2020-05-17 16:14:18 +02:00
buildInputs = [
gdk-pixbuf
librsvg
];
2020-01-31 18:51:27 +01:00
2020-05-17 16:14:18 +02:00
propagatedBuildInputs = [
gnome.adwaita-icon-theme
2020-05-17 16:14:18 +02:00
gnome-icon-theme
numix-icon-theme-circle
hicolor-icon-theme
];
2020-05-17 16:08:57 +02:00
2020-05-17 16:14:18 +02:00
propagatedUserEnvPkgs = [
gtk-engine-murrine
];
2020-01-31 18:51:27 +01:00
2020-05-17 16:08:57 +02:00
dontDropIconThemeCache = true;
2020-01-31 18:51:27 +01:00
installPhase = ''
patchShebangs .
mkdir -p $out/share/themes
2020-05-17 16:08:57 +02:00
name= ./install.sh --dest $out/share/themes
2020-01-31 18:51:27 +01:00
rm $out/share/themes/*/{AUTHORS,COPYING}
2020-05-17 16:08:57 +02: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 18:51:27 +01:00
'';
meta = with lib; {
2020-01-31 18:51:27 +01:00
description = "Flat Design theme for GTK based desktop environments";
homepage = "https://github.com/vinceliuice/Canta-theme";
2021-09-08 14:01:39 +02:00
license = licenses.gpl2Only;
platforms = platforms.linux; # numix-icon-theme-circle unavailable in darwin
2020-01-31 18:51:27 +01:00
maintainers = [ maintainers.romildo ];
};
}