This commit is contained in:
twoneis 2025-02-08 17:20:18 +01:00
parent 36eb89f9c9
commit 40051640a6

View file

@ -0,0 +1,14 @@
{ fetchFromGitea, buildDotnetModule }: let
ver = "v2024.1-beta4.security2";
in buildDotnetModule rec {
pname = "iceshrimp";
version = ver;
src = fetchFromGitea {
domain = "iceshrimp.dev";
owner = "iceshrimp";
repo = "Iceshrimp.NET";
rev = ver;
hash = "";
};
}