add agatheme

This commit is contained in:
Vivian 2022-07-31 16:12:03 +02:00
parent 8b358f2557
commit b2eec9065a
3 changed files with 50 additions and 3 deletions

View file

@ -15,5 +15,7 @@ final: prev: {
withDNSCrypt = true;
withTFO = true;
};
gitea-agatheme = prev.callPackage ./gitea-agatheme { };
};
}

View file

@ -0,0 +1,15 @@
{ lib, stdenv, fetchurl }: stdenv.mkDerivation rec {
pname = "gitea-agatheme";
version = "1.1";
src = fetchurl {
url = "https://git.lain.faith/attachments/4c2c2237-1e67-458e-8acd-92a20d382777";
sha256 = "sha256-uwtg6BAR5J28Ls3naQkJg7xBEfZPXVS5INH+bsVn4Uk=";
};
phases = [ "installPhase" ];
installPhase = ''
cp $src $out
'';
}