Unverified Commit 20c3bfad authored by Sandro Jäckel's avatar Sandro Jäckel
Browse files

lsp-plugins: use php without any extensions

We just build a doc with it which seems to not require much.
This saves about 80 dependencies.
parent 2506c280
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -8,13 +8,13 @@ stdenv.mkDerivation rec {
  version = "1.2.16";

  src = fetchurl {
    url = "https://github.com/sadko4u/${pname}/releases/download/${version}/${pname}-src-${version}.tar.gz";
    url = "https://github.com/lsp-plugins/lsp-plugins/releases/download/${version}/lsp-plugins-src-${version}.tar.gz";
    sha256 = "sha256-w2BUIF44z78syLroQk2asVXA5bt9P9POiuwxpnlkc8o=";
  };

  outputs = [ "out" "dev" "doc" ];

  nativeBuildInputs = [ pkg-config php makeWrapper ];
  nativeBuildInputs = [ pkg-config (php.withExtensions (_: [])) makeWrapper ];
  buildInputs = [ jack2 libsndfile libGLU libGL lv2 cairo ladspaH libXrandr ];

  makeFlags = [