mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
02297beade
Lots of packages are missing versions in their name. This adds them where appropriate. These were found with this command: $ nix-env -qa -f. | grep -v '\-[0-9A-Za-z.-_+]*$' | grep -v '^hook$' See issue #41007.
26 lines
710 B
Nix
26 lines
710 B
Nix
{ stdenv, fetchgit }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gnome-breeze-20160526";
|
|
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
|
|
'';
|
|
|
|
preferLocalBuild = true;
|
|
|
|
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 = [];
|
|
};
|
|
}
|