nixpkgs/pkgs/data/themes/albatross/default.nix

28 lines
718 B
Nix
Raw Normal View History

2016-01-10 19:10:24 +00:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "Albatross";
2016-01-10 19:10:24 +00:00
version = "1.7.4";
2016-01-10 19:10:24 +00:00
src = fetchFromGitHub {
repo = "Albatross";
owner = "shimmerproject";
rev = "v${version}";
sha256 = "0mq87n2hxy44nzr567av24n5nqjaljhi1afxrn3mpjqdbkq7lx88";
};
dontBuild = true;
installPhase = ''
install -dm 755 $out/share/themes/Albatross
cp -dr --no-preserve='ownership' {LICENSE.GPL,README,index.theme,gtk-2.0,gtk-3.0,metacity-1,xfwm4} $out/share/themes/Albatross/
'';
meta = {
2016-01-10 19:10:24 +00:00
description = "A desktop Suite for Xfce";
homepage = "https://github.com/shimmerproject/Albatross";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
};
}