summary refs log tree commit diff
path: root/pkgs/development/pure-modules/fastcgi/default.nix
blob: 622ea140f66c6410888634897c53b5522bdf314f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, pkgconfig, pure, fcgi }:

stdenv.mkDerivation rec {
  baseName = "fastcgi";
  version = "0.6";
  name = "pure-${baseName}-${version}";

  src = fetchurl {
    url = "https://bitbucket.org/purelang/pure-lang/downloads/${name}.tar.gz";
    sha256 = "aa5789cc1e17521c01f349ee82ce2a00500e025b3f8494f89a7ebe165b5aabc7";
  };

  nativeBuildInputs = [ pkgconfig ];
  propagatedBuildInputs = [ pure fcgi ];
  makeFlags = [ "libdir=$(out)/lib" "prefix=$(out)/" ];
  setupHook = ../generic-setup-hook.sh;

  meta = {
    description = "Lets you write FastCGI scripts with Pure, to be run by web servers like Apache";
    homepage = "http://puredocs.bitbucket.org/pure-fastcgi.html";
    license = stdenv.lib.licenses.bsd3;
    platforms = stdenv.lib.platforms.linux;
    maintainers = with stdenv.lib.maintainers; [ asppsa ];
  };
}