various updates

This commit is contained in:
Vivian 2023-05-30 09:58:17 +02:00
parent 53658c2a77
commit 5b3ac6c316
9 changed files with 76 additions and 21 deletions

View file

@ -1,4 +1,4 @@
{ stdenvNoCC, fetchFromGitHub }:
{ lib, stdenvNoCC, fetchFromGitHub }:
stdenvNoCC.mkDerivation rec {
pname = "dnd-5e-latex-template";
version = "0.8.0";
@ -23,5 +23,8 @@ stdenvNoCC.mkDerivation rec {
runHook postInstall
'';
meta = { description = "DnD 5e latex template"; };
meta = {
description = "DnD 5e latex template";
license = lib.licenses.mit;
};
}

View file

@ -1,4 +1,4 @@
{ stdenvNoCC, fetchurl }:
{ stdenvNoCC, fetchurl, lib }:
stdenvNoCC.mkDerivation {
pname = "gitea-agatheme";
version = "1.2";
@ -14,4 +14,8 @@ stdenvNoCC.mkDerivation {
installPhase = ''
cp $src $out
'';
meta = with lib; {
description = "Gitea/Forgejo purple theme";
};
}