2021-01-15 08:29:18 +01:00
|
|
|
{ lib, stdenv, fetchgit }:
|
2016-06-15 23:55:57 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2018-05-24 06:37:33 +02:00
|
|
|
name = "gnome-breeze-20160526";
|
2016-06-15 23:55:57 +02:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2017-12-05 23:20:11 +01:00
|
|
|
preferLocalBuild = true;
|
|
|
|
|
2016-06-15 23:55:57 +02:00
|
|
|
meta = {
|
|
|
|
description = "A GTK theme built to match KDE's breeze theme";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/dirruk1/gnome-breeze";
|
2021-01-15 08:29:18 +01:00
|
|
|
license = lib.licenses.lgpl2;
|
|
|
|
maintainers = with lib.maintainers; [ bennofs ];
|
|
|
|
platforms = lib.platforms.all;
|
2016-06-15 23:55:57 +02:00
|
|
|
hydraPlatforms = [];
|
|
|
|
};
|
|
|
|
}
|