depot/third_party/nixpkgs/pkgs/servers/http/yaws/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

32 lines
789 B
Nix

{lib, stdenv, fetchFromGitHub, erlang, pam, perl, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "yaws";
version = "2.2.0";
src = fetchFromGitHub {
owner = "erlyaws";
repo = pname;
rev = "${pname}-${version}";
hash = "sha256-acO8Vc8sZJl22HUml2kTxVswLEirqMbqHQdRIbkkcvs=";
};
configureFlags = [ "--with-extrainclude=${pam}/include/security" ];
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ erlang pam perl ];
postInstall = ''
sed -i "s#which #type -P #" $out/bin/yaws
'';
meta = with lib; {
description = "Webserver for dynamic content written in Erlang";
mainProgram = "yaws";
homepage = "https://github.com/erlyaws/yaws";
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = [ ];
};
}