biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / http / yaws / default.nix
blob5e5a401d35d2aa8d69622cbfb4bec2cb71da044d
1 {lib, stdenv, fetchFromGitHub, erlang, pam, perl, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "yaws";
5   version = "2.1.1";
7   src = fetchFromGitHub {
8     owner = "erlyaws";
9     repo = pname;
10     rev = "${pname}-${version}";
11     hash = "sha256-F1qhq0SEChWw/EBodXKWTqMNmGoTwP2JgkmfANUFD9I=";
12   };
14   configureFlags = [ "--with-extrainclude=${pam}/include/security" ];
16   nativeBuildInputs = [ autoreconfHook ];
17   buildInputs = [ erlang pam perl ];
19   postInstall = ''
20     sed -i "s#which #type -P #" $out/bin/yaws
21   '';
23   meta = with lib; {
24     description = "A webserver for dynamic content written in Erlang.";
25     mainProgram = "yaws";
26     homepage = "https://github.com/erlyaws/yaws";
27     license = licenses.bsd2;
28     platforms = platforms.linux;
29     maintainers = with maintainers; [ goibhniu ];
30   };