mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
755b915a15
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/'
24 lines
603 B
Nix
24 lines
603 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "materia-kde-theme";
|
|
version = "20220714";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PapirusDevelopmentTeam";
|
|
repo = "materia-kde";
|
|
rev = version;
|
|
sha256 = "sha256-/LA+H2ekxuO1RpfaPJruRGeWPVopA0rZUxU4Mh7YQ0s=";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
description = "Port of the materia theme for Plasma";
|
|
homepage = "https://github.com/PapirusDevelopmentTeam/materia-kde";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.diffumist ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|