emacsPackages.color-theme-solarized: use melpaBuild

- get rid of nested with
- remove samuelrivas from maintainers
This commit is contained in:
Anderson Torres 2024-07-07 01:00:16 -03:00
parent 92b5736994
commit d310c489e9

View File

@ -1,10 +1,11 @@
{ lib
, trivialBuild
, fetchFromGitHub
, color-theme
{
lib,
color-theme,
fetchFromGitHub,
melpaBuild,
}:
trivialBuild {
melpaBuild {
pname = "color-theme-solarized";
version = "0-unstable-2017-10-24";
@ -17,10 +18,10 @@ trivialBuild {
packageRequires = [ color-theme ];
meta = with lib; {
meta = {
homepage = "http://ethanschoonover.com/solarized";
description = "Precision colors for machines and people; Emacs implementation";
license = licenses.mit;
maintainers = with maintainers; [ samuelrivas AndersonTorres ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ AndersonTorres ];
};
}