about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/go-autoconfig/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/go-autoconfig/default.nix')
-rw-r--r--nixpkgs/pkgs/servers/go-autoconfig/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/go-autoconfig/default.nix b/nixpkgs/pkgs/servers/go-autoconfig/default.nix
new file mode 100644
index 000000000000..1fe09a03a0dd
--- /dev/null
+++ b/nixpkgs/pkgs/servers/go-autoconfig/default.nix
@@ -0,0 +1,30 @@
+{ buildGoModule
+, fetchFromGitHub
+, lib
+}:
+
+buildGoModule rec {
+  pname = "go-autoconfig";
+  version = "unstable-2022-08-03";
+
+  src = fetchFromGitHub {
+    owner = "L11R";
+    repo = pname;
+    rev = "b1b182202da82cc881dccd715564853395d4f76a";
+    sha256 = "sha256-Rbg6Ghp5NdcLSLSIhwwFFMKmZPWsboDyHCG6ePqSSZA=";
+  };
+
+  vendorHash = "sha256-pI2iucrt7XLLZNOz364kOEulXxPdvJp92OewqnkQEO4=";
+
+  postInstall = ''
+    cp -r templates $out/
+  '';
+
+  meta = with lib; {
+    description = "IMAP/SMTP autodiscover feature for Thunderbird, Apple Mail and Microsoft Outlook";
+    homepage = "https://github.com/L11R/go-autoconfig";
+    license = licenses.mit;
+    maintainers = with maintainers; [ onny ];
+    mainProgram = "go-autoconfig";
+  };
+}