gnome-breeze: init

This commit is contained in:
Benno Fünfstück 2016-06-15 23:55:57 +02:00
parent 9bbac1f4ea
commit 41d523a8bc
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchgit }:
stdenv.mkDerivation {
name = "gnome-breeze";
src = fetchgit {
url = "https://github.com/dirruk1/gnome-breeze";
sha256 = "0hkk0gqlnrs1m4rb5r84f5y96qfamrbiwm09z89yc32124x1a1lm";
rev = "49a5cd67a270e13a4c04a4b904f126ef728e9221";
};
installPhase = ''
mkdir -p $out/share/themes
cp -r Breeze* $out/share/themes
'';
meta = {
description = "A GTK theme built to match KDE's breeze theme";
homepage = "https://github.com/dirruk1/gnome-breeze";
license = stdenv.lib.licenses.lgpl2;
maintainers = with stdenv.lib.maintainers; [ bennofs ];
platforms = stdenv.lib.platforms.all;
hydraPlatforms = [];
preferLocalBuild = true;
};
}

View File

@ -16563,6 +16563,8 @@ in
x11Support = true;
});
gnome-breeze = callPackage ../misc/themes/gnome-breeze { };
gnuk = callPackage ../misc/gnuk { };
gnuk-unstable = lowPrio (callPackage ../misc/gnuk/unstable.nix { });
gnuk-git = lowPrio (callPackage ../misc/gnuk/git.nix { });