diff options
author | Ben Sima <ben@bsima.me> | 2020-01-17 14:37:04 -0800 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-02-11 10:08:06 -0800 |
commit | 3a4ec55fedfc5e9243371dfc7a561ce762acee51 (patch) | |
tree | cb015e1b074fcc5a4569b4422725e63e3032fe4b | |
parent | dc6e1c09c312542d8ee735d8da4ebc89b18c1e59 (diff) |
Upgrade nixos-mailserver
Hopefully this won't break anything...
-rw-r--r-- | default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/default.nix b/default.nix index 290e2b8..a05d370 100644 --- a/default.nix +++ b/default.nix @@ -6,9 +6,9 @@ let # return one thing, instead of a single function that returns multiple things buildOS = import ./Com/Simatime/buildOS.nix nixos; buildHaskellApp = import ./Com/Simatime/buildHaskellApp.nix nixpkgs; - nixos-mailserver = builtins.fetchTarball { - url = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/archive/v2.2.1/nixos-mailserver-v2.2.1.tar.gz"; - sha256 = "03d49v8qnid9g9rha0wg2z6vic06mhp0b049s3whccn1axvs2zzx"; + nixos-mailserver = let ver = "v2.3.0"; in builtins.fetchTarball { + url = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/archive/${ver}/nixos-mailserver-${ver}.tar.gz"; + sha256 = "0lpz08qviccvpfws2nm83n7m2r8add2wvfg9bljx9yxx8107r919"; }; in { Com.Simatime = buildOS { |