nixpkgs/pkgs/data/themes/gnome-breeze/default.nix

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

30 lines
733 B
Nix
Raw Normal View History

{ 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";
src = fetchFromGitHub {
owner = "dirruk1";
repo = "gnome-breeze";
2016-06-15 21:55:57 +00:00
rev = "49a5cd67a270e13a4c04a4b904f126ef728e9221";
sha256 = "sha256-lQYVOhFBDOYT+glUHleuymGTfHEE5bIyqUFnS/EDc0I=";
2016-06-15 21:55:57 +00:00
};
2016-06-15 21:55:57 +00:00
installPhase = ''
mkdir -p $out/share/themes
cp -r Breeze* $out/share/themes
'';
preferLocalBuild = true;
meta = with lib; {
2016-06-15 21:55:57 +00:00
description = "A GTK theme built to match KDE's breeze theme";
homepage = "https://github.com/dirruk1/gnome-breeze";
license = licenses.lgpl2;
maintainers = with maintainers; [ bennofs ];
platforms = platforms.all;
2016-06-15 21:55:57 +00:00
hydraPlatforms = [];
};
}