base16-schemes: modernize

This commit is contained in:
awwpotato 2025-06-07 12:02:25 -07:00
parent ad47117c7d
commit fa6c2e77ee
No known key found for this signature in database

View File

@ -2,7 +2,6 @@
lib, lib,
stdenv, stdenv,
fetchFromGitHub, fetchFromGitHub,
...
}: }:
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "base16-schemes"; pname = "base16-schemes";
@ -24,10 +23,10 @@ stdenv.mkDerivation (finalAttrs: {
runHook postInstall runHook postInstall
''; '';
meta = with lib; { meta = {
description = "All the color schemes for use in base16 packages"; description = "All the color schemes for use in base16 packages";
homepage = finalAttrs.src.meta.homepage; homepage = "https://github.com/tinted-theming/schemes";
maintainers = [ maintainers.DamienCassou ]; maintainers = [ lib.maintainers.DamienCassou ];
license = licenses.mit; license = lib.licenses.mit;
}; };
}) })