Skip to content

Instantly share code, notes, and snippets.

@joepie91

joepie91/.nix Secret

Created July 21, 2017 21:14
Show Gist options
  • Save joepie91/771ecce3212c03586d9e5111da230a9b to your computer and use it in GitHub Desktop.
Save joepie91/771ecce3212c03586d9e5111da230a9b to your computer and use it in GitHub Desktop.
{ 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