26 lines
829 B
Nix
26 lines
829 B
Nix
|
{ 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";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ 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 ];
|
||
|
};
|
||
|
}
|