nixpkgs/pkgs/data/themes/materia-kde/default.nix
Diffumist 4ac6180a19
materia-kde-theme: init at 20210612 (#127873)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: diffumist <misanzhiwu@gmail.com>
2021-06-24 10:49:16 +02:00

24 lines
594 B
Nix

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "materia-kde-theme";
version = "20210612";
src = fetchFromGitHub {
owner = "PapirusDevelopmentTeam";
repo = "materia-kde";
rev = version;
sha256 = "P76rLj7x4KpYb3hdHBSUM8X/RcxKoJl1THIXHdfPoAY=";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "A port of the materia theme for Plasma";
homepage = "https://github.com/PapirusDevelopmentTeam/materia-kde";
license = licenses.gpl3;
maintainers = [ maintainers.diffumist ];
platforms = platforms.all;
};
}