about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/http/yaws/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/http/yaws/default.nix')
-rw-r--r--nixpkgs/pkgs/servers/http/yaws/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/http/yaws/default.nix b/nixpkgs/pkgs/servers/http/yaws/default.nix
new file mode 100644
index 000000000000..5e5a401d35d2
--- /dev/null
+++ b/nixpkgs/pkgs/servers/http/yaws/default.nix
@@ -0,0 +1,32 @@
+{lib, stdenv, fetchFromGitHub, erlang, pam, perl, autoreconfHook }:
+
+stdenv.mkDerivation rec {
+  pname = "yaws";
+  version = "2.1.1";
+
+  src = fetchFromGitHub {
+    owner = "erlyaws";
+    repo = pname;
+    rev = "${pname}-${version}";
+    hash = "sha256-F1qhq0SEChWw/EBodXKWTqMNmGoTwP2JgkmfANUFD9I=";
+  };
+
+  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 = "A webserver for dynamic content written in Erlang.";
+    mainProgram = "yaws";
+    homepage = "https://github.com/erlyaws/yaws";
+    license = licenses.bsd2;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ goibhniu ];
+  };
+
+}