mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
33 lines
819 B
Nix
33 lines
819 B
Nix
{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 ];
|
|
};
|
|
|
|
}
|