3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/xfce/art/xfwm4-themes/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
670 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, xfce }:
let
category = "art";
in
2017-04-05 02:39:03 +01:00
stdenv.mkDerivation rec {
pname = "xfwm4-themes";
version = "4.10.0";
2017-04-05 02:39:03 +01:00
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "mirror://xfce/src/${category}/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
sha256 = "sha256-MhTV8A6XA7XoyefDKH1gbe3scoXOtNXbMy6TraZv1XU=";
2017-04-05 02:39:03 +01:00
};
2021-01-15 13:21:58 +00:00
2022-02-21 15:10:33 +00:00
passthru.updateScript = xfce.archiveUpdater { inherit category pname version; };
2017-04-05 02:39:03 +01:00
meta = with lib; {
homepage = "https://www.xfce.org/";
2017-04-05 02:39:03 +01:00
description = "Themes for Xfce";
2021-03-02 12:06:16 +00:00
license = licenses.gpl3Only;
2017-04-05 02:39:03 +01:00
platforms = platforms.linux;
2021-11-28 18:51:44 +00:00
maintainers = with maintainers; [ volth ] ++ teams.xfce.members;
2017-04-05 02:39:03 +01:00
};
}