Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
816 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
erlang,
pam,
perl,
autoreconfHook,
}:
stdenv.mkDerivation rec {
pname = "yaws";
version = "2.2.0";
src = fetchFromGitHub {
owner = "erlyaws";
repo = "yaws";
rev = "yaws-${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 = [ ];
};
}