nginx: add PageSpeed module (Linux only)

This commit is contained in:
3noch
2017-01-06 02:09:54 -05:00
parent d2d7740f1b
commit 0d4d401b7f
4 changed files with 53 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
{ callPackage }:
callPackage ./generic.nix {} {
version = "1.11.33.4";
sha256 = "1jq2llp0i4666rwqnx1hs4pjlpblxivvs1jkkjzlmdbsv28jzjq8";
}

View File

@@ -0,0 +1,16 @@
{ fetchzip, stdenv }:
{ version, sha256 }:
{ inherit version; } // fetchzip {
inherit sha256;
name = "psol-${version}";
url = "https://dl.google.com/dl/page-speed/psol/${version}.tar.gz";
meta = {
description = "PageSpeed Optimization Libraries";
homepage = "https://developers.google.com/speed/pagespeed/psol";
license = stdenv.lib.licenses.asl20;
# WARNING: This only works with Linux because the pre-built PSOL binary is only supplied for Linux.
# TODO: Build PSOL from source to support more platforms.
platforms = stdenv.lib.platforms.linux;
};
}