draupnir: modernize

This commit is contained in:
dish
2025-11-24 14:21:36 -05:00
parent 317271084b
commit 54c7fdceff
+8 -8
View File
@@ -20,14 +20,14 @@ let
nodeSources = srcOnly nodejs;
in
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "draupnir";
version = "2.8.0";
src = fetchFromGitHub {
owner = "the-draupnir-project";
repo = "Draupnir";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-I9DYiNxD95pzHVsgZ/hJwHfrsVqE/eBALNiePVNDpy0=";
};
@@ -42,13 +42,13 @@ stdenv.mkDerivation rec {
++ lib.optional stdenv.hostPlatform.isDarwin cctools.libtool;
offlineCache = fetchYarnDeps {
inherit src;
inherit (finalAttrs) src;
hash = "sha256-kTdJ6zKNjH5CxcM9EvXzbz2Phrp5xI0+pvNwMLRmLgQ=";
};
preBuild = ''
# install proper version info
echo "${version}-nix" > version.txt
echo "${finalAttrs.version}-nix" > version.txt
# makes network requests
sed -i 's/corepack //g' package.json
@@ -97,7 +97,7 @@ stdenv.mkDerivation rec {
updateScript = nix-update-script { };
};
meta = with lib; {
meta = {
description = "Moderation tool for Matrix";
homepage = "https://github.com/the-draupnir-project/Draupnir";
longDescription = ''
@@ -114,8 +114,8 @@ stdenv.mkDerivation rec {
A Synapse module is also available to apply the same rulesets the bot
uses across an entire homeserver.
'';
license = licenses.afl3;
maintainers = with maintainers; [ RorySys ];
license = lib.licenses.afl3;
maintainers = with lib.maintainers; [ RorySys ];
mainProgram = "draupnir";
};
}
})