-
-
Save joepie91/771ecce3212c03586d9e5111da230a9b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ stdenv, fetchurl, maintainers }: | |
let | |
in stdenv.mkDerivation rec { | |
name = "bluebird-theme-${version}"; | |
version = "1.2"; | |
src = fetchurl { | |
url = "https://github.com/shimmerproject/Bluebird/archive/v${version}.tar.gz"; | |
sha256 = "0yf5l358j7lgsvmkdw7y6l45zyx70amjh5y6y464mdww3lc20rgp"; | |
}; | |
dontBuild = true; | |
installPhase = '' | |
mkdir -p $out/share/themes/Bluebird | |
cp -r . $out/share/themes/Bluebird/ | |
''; | |
meta = with stdenv.lib; { | |
description = "Desktop Suite for Xfce"; | |
longDescription = '' | |
Bluebird was the default theme in Xubuntu 10.10. | |
The Bluebird desktop suite includes: | |
* GTK+ themes | |
* xfwm theme | |
* metacity theme (by Oleg Olegovich) | |
''; | |
homepage = http://shimmerproject.org/project/bluebird/; | |
downloadPage = https://github.com/shimmerproject/Bluebird/releases; | |
license = licenses.gpl2; | |
maintainers = [ maintainers.joepie91 ]; | |
platforms = platforms.linux; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment