infrastructure/nixos/pkgs/gitea-agatheme/default.nix

22 lines
454 B
Nix
Raw Normal View History

2023-05-30 09:58:17 +02:00
{ stdenvNoCC, fetchurl, lib }:
2023-05-04 13:08:10 +02:00
stdenvNoCC.mkDerivation {
2022-07-31 16:12:03 +02:00
pname = "gitea-agatheme";
2022-11-28 23:36:13 +01:00
version = "1.2";
2022-07-31 16:12:03 +02:00
src = fetchurl {
2023-05-04 13:08:10 +02:00
url =
"https://git.lain.faith/attachments/290e2304-92a3-4991-8703-fbbf52f31340";
2022-11-28 23:36:13 +01:00
sha256 = "424f4e232c7d759485cdf1bcde9edde50f2992cf6bde61c21f71eae03a905543";
2022-07-31 16:12:03 +02:00
};
phases = [ "installPhase" ];
installPhase = ''
cp $src $out
'';
2023-05-30 09:58:17 +02:00
meta = with lib; {
description = "Gitea/Forgejo purple theme";
};
2022-07-31 16:12:03 +02:00
}