2022-03-07 17:01:47 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2016-06-15 21:55:57 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2022-03-01 10:39:32 +00:00
|
|
|
pname = "gnome-breeze";
|
|
|
|
version = "unstable-2016-05-26";
|
2022-03-07 17:01:47 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dirruk1";
|
|
|
|
repo = "gnome-breeze";
|
2016-06-15 21:55:57 +00:00
|
|
|
rev = "49a5cd67a270e13a4c04a4b904f126ef728e9221";
|
2022-03-07 17:01:47 +00:00
|
|
|
sha256 = "sha256-lQYVOhFBDOYT+glUHleuymGTfHEE5bIyqUFnS/EDc0I=";
|
2016-06-15 21:55:57 +00:00
|
|
|
};
|
2022-03-07 17:01:47 +00:00
|
|
|
|
2016-06-15 21:55:57 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/share/themes
|
|
|
|
cp -r Breeze* $out/share/themes
|
|
|
|
'';
|
|
|
|
|
2017-12-05 22:20:11 +00:00
|
|
|
preferLocalBuild = true;
|
|
|
|
|
2022-03-07 17:01:47 +00:00
|
|
|
meta = with lib; {
|
2016-06-15 21:55:57 +00:00
|
|
|
description = "A GTK theme built to match KDE's breeze theme";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/dirruk1/gnome-breeze";
|
2022-03-07 17:01:47 +00:00
|
|
|
license = licenses.lgpl2;
|
|
|
|
maintainers = with maintainers; [ bennofs ];
|
|
|
|
platforms = platforms.all;
|
2016-06-15 21:55:57 +00:00
|
|
|
hydraPlatforms = [];
|
|
|
|
};
|
|
|
|
}
|