about summary refs log tree commit diff
path: root/pkgs/development/libraries/psol/default.nix
blob: b6b9d0bac51344031fdafc35f5a1fe5e4637c1b3 (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
26
27
28
29
30
{ lib, stdenvNoCC, fetchurl }:

stdenvNoCC.mkDerivation rec {
  pname = "psol";
  version = "1.13.35.2"; # Latest stable, 2018-02-05

  src = fetchurl {
    url = "https://dl.google.com/dl/page-speed/psol/${version}-x64.tar.gz";
    hash = "sha256-3zujyPxU4ThF0KHap6bj2YMSbCORKFG7+Lo1vmRqQ08=";
  };

  installPhase = ''
    runHook preInstall

    mkdir -p $out
    mv include lib -t $out

    runHook postInstall
  '';

  meta = with lib; {
    description = "PageSpeed Optimization Libraries";
    homepage = "https://developers.google.com/speed/pagespeed/psol";
    license = licenses.asl20;
    sourceProvenance = with sourceTypes; [ binaryNativeCode ];
    # 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 = platforms.linux;
  };
}