working ulogger!

This commit is contained in:
Anish Lakhwara
2023-04-23 21:02:59 +10:00
parent 042c8dcec9
commit a68dd78843
9 changed files with 90 additions and 140 deletions
+1
View File
@@ -7,4 +7,5 @@
fennel-ls = pkgs.callPackage ./fennel-ls.nix { };
kobopatch = pkgs.callPackage ./kobopatch.nix { };
my-mautrix-discord = pkgs.callPackage ./mautrix-discord.nix { }; # Handled by matrix-appservices input
ulogger-server = pkgs.callPackage ./ulogger.nix { };
}
+2 -1
View File
@@ -10,7 +10,7 @@ stdenv.mkDerivation {
# Release tarball includes vendored files
src = fetchurl {
url = "https://github.com/bfabiszewski/ulogger-server/archive/refs/tags/v${version}.tar.gz";
hash = "";
hash = "sha256-+ZyNA5+lhD6DKXIWNdlLA7ArtV1F61H3UmMyRVRdws0=";
};
dontBuild = true;
@@ -19,6 +19,7 @@ stdenv.mkDerivation {
runHook preInstall
rm -R .docker
rm -R .tests
rm -R uploads/
mkdir $out
cp -R * $out/
runHook postInstall