mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
29 lines
661 B
Nix
29 lines
661 B
Nix
{ stdenv, fetchurl, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "popa3d-1.0.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.openwall.com/popa3d/${name}.tar.gz";
|
|
sha256 = "1g48cd74sqhl496wmljhq44iyfpghaz363a1ip8nyhpjz7d57f03";
|
|
};
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
patches = [
|
|
./fix-mail-spool-path.patch
|
|
./use-openssl.patch
|
|
./use-glibc-crypt.patch
|
|
./enable-standalone-mode.patch
|
|
];
|
|
|
|
configurePhase = ''makeFlags="PREFIX=$out MANDIR=$out/share/man"'';
|
|
|
|
meta = {
|
|
homepage = http://www.openwall.com/popa3d/;
|
|
description = "Tiny POP3 daemon with security as the primary goal";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|