Skip to content

Instantly share code, notes, and snippets.

@Abdillah
Created November 15, 2017 02:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Abdillah/8db0adf5041eaded46c62cd65e71ecc7 to your computer and use it in GitHub Desktop.
Save Abdillah/8db0adf5041eaded46c62cd65e71ecc7 to your computer and use it in GitHub Desktop.
NixOS PHP Pear Mail module install (not tested)
with (<nixpkgs>);
let
mail = { fetchurl }: stdenv.mkDerivation rec {
name = 'phppear-mail-1.3.0';
src = fetchurl {
url = http://download.pear.php.net/package/Mail-1.3.0.tgz;
sha256 = "0n19456jb9bnq0zicwxg9859bhbb5n73mg4m7nijmja8ld7pjlsq";
};
};
in mail { inherit fetchurl };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment