diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-06 21:37:46 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-06 21:37:46 +0200 |
commit | fccc098fa6d5636a6dad9a393414d7a1dfbac8ec (patch) | |
tree | f6c4b0d0be00c67edcc994c2bf3dd076d3ffbdaf /pkgs/by-name/st/stalwart-mail-patched/mail-send.nix | |
parent | hosts/server2: Enable atuin-sync (diff) | |
download | nixos-server-fccc098fa6d5636a6dad9a393414d7a1dfbac8ec.zip |
pkgs/stalwart-mail: Update to nixos 25.05
Now the stalwart-mail package is by default free. As such, we could drop the respective patches.
Diffstat (limited to 'pkgs/by-name/st/stalwart-mail-patched/mail-send.nix')
-rw-r--r-- | pkgs/by-name/st/stalwart-mail-patched/mail-send.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/by-name/st/stalwart-mail-patched/mail-send.nix b/pkgs/by-name/st/stalwart-mail-patched/mail-send.nix new file mode 100644 index 0000000..e0d8c57 --- /dev/null +++ b/pkgs/by-name/st/stalwart-mail-patched/mail-send.nix @@ -0,0 +1,20 @@ +{ + stdenv, + fetchFromGitHub, +}: +stdenv.mkDerivation (finalAttrs: { + pname = "mail-send"; + version = "0.5.0"; + + src = fetchFromGitHub { + owner = "stalwartlabs"; + repo = "mail-send"; + tag = "v${finalAttrs.version}"; + hash = "sha256-uDD4GLwjRpNqjtXPMask0twGW2Gcm1PFyDGXcfPS0F4="; + }; + + installPhase = '' + mkdir --parents "$out" + cp --recursive ./. "$out/" + ''; +}) |