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-free/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-free/mail-send.nix')
-rw-r--r-- | pkgs/by-name/st/stalwart-mail-free/mail-send.nix | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/pkgs/by-name/st/stalwart-mail-free/mail-send.nix b/pkgs/by-name/st/stalwart-mail-free/mail-send.nix deleted file mode 100644 index e0d8c57..0000000 --- a/pkgs/by-name/st/stalwart-mail-free/mail-send.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ - 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/" - ''; -}) |