nixpkgs/pkgs/data/themes/albatross/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

28 lines
707 B
Nix

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "Albatross";
version = "1.7.4";
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 = {
description = "Desktop Suite for Xfce";
homepage = "https://github.com/shimmerproject/Albatross";
license = lib.licenses.gpl2;
platforms = lib.platforms.unix;
};
}