2022-10-06 18:32:54 +00:00
|
|
|
{ lib, stdenv, fetchurl, httpTwoLevelsUpdater }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "xfwm4-themes";
|
|
|
|
version = "4.10.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2022-10-06 18:32:54 +00:00
|
|
|
url = "mirror://xfce/src/art/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
|
2021-06-28 23:13:55 +00:00
|
|
|
sha256 = "sha256-MhTV8A6XA7XoyefDKH1gbe3scoXOtNXbMy6TraZv1XU=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2021-01-17 00:15:33 +00:00
|
|
|
|
2022-10-06 18:32:54 +00:00
|
|
|
passthru.updateScript = httpTwoLevelsUpdater {
|
|
|
|
url = "https://archive.xfce.org/src/art/${pname}";
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://www.xfce.org/";
|
|
|
|
description = "Themes for Xfce";
|
2021-04-05 15:23:46 +00:00
|
|
|
license = licenses.gpl3Only;
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.linux;
|
2022-07-14 12:49:19 +00:00
|
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|