summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2007-08-07 22:22:31 +0000
committerAndres Löh <mail@andres-loeh.de>2007-08-07 22:22:31 +0000
commit7f30b40e653bab3969e774df3c6e068210fdec2e (patch)
tree65708674a2b2d70614d6ec844775bb11593a5652 /pkgs/top-level
parent61656532dd6b7dbe9de9e135f95bd95eb7a242ac (diff)
downloadnixlib-7f30b40e653bab3969e774df3c6e068210fdec2e.tar
nixlib-7f30b40e653bab3969e774df3c6e068210fdec2e.tar.gz
nixlib-7f30b40e653bab3969e774df3c6e068210fdec2e.tar.bz2
nixlib-7f30b40e653bab3969e774df3c6e068210fdec2e.tar.lz
nixlib-7f30b40e653bab3969e774df3c6e068210fdec2e.tar.xz
nixlib-7f30b40e653bab3969e774df3c6e068210fdec2e.tar.zst
nixlib-7f30b40e653bab3969e774df3c6e068210fdec2e.zip
* add ssmtp
  still rather rough around the edges:
  - example config files are installed to $out/etc/ssmtp
  - the binary expects config files in /etc/ssmtp
  - it's the user's responsibility to add the global config files

svn path=/nixpkgs/trunk/; revision=9064
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index a0b26ae78a09..832f7d399023 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -551,6 +551,10 @@ rec {
     inherit (gtkLibs) glib;
   };
 
+  ssmtp = import ../tools/networking/ssmtp {
+    inherit fetchurl stdenv;
+  };
+
   su = import ../tools/misc/su {
     inherit fetchurl stdenv pam;
   };