mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Merge pull request #26831 from volth/plv8-init-2.0.3
plv8: init at 2.0.3
This commit is contained in:
commit
239920d745
34
pkgs/servers/sql/postgresql/plv8/default.nix
Normal file
34
pkgs/servers/sql/postgresql/plv8/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, v8, perl, postgresql }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "plv8-${version}";
|
||||||
|
version = "2.0.3";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ perl ];
|
||||||
|
buildInputs = [ v8 postgresql ];
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "plv8";
|
||||||
|
repo = "plv8";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0cn7ynckmdb08dkzjilvc55xz61d1jiya7yrnphizw404j84y3qc";
|
||||||
|
};
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
substituteInPlace Makefile --replace '-lv8_libplatform' '-lv8_libplatform -lv8_libbase'
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
install -D plv8.so -t $out/lib
|
||||||
|
install -D {plls,plcoffee,plv8}{--${version}.sql,.control} -t $out/share/extension
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "PL/v8 - A Procedural Language in JavaScript powered by V8";
|
||||||
|
homepage = https://pgxn.org/dist/plv8/;
|
||||||
|
maintainers = with maintainers; [ volth ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = licenses.postgresql;
|
||||||
|
};
|
||||||
|
}
|
@ -9589,6 +9589,8 @@ with pkgs;
|
|||||||
|
|
||||||
pgroonga = callPackage ../servers/sql/postgresql/pgroonga {};
|
pgroonga = callPackage ../servers/sql/postgresql/pgroonga {};
|
||||||
|
|
||||||
|
plv8 = callPackage ../servers/sql/postgresql/plv8 {};
|
||||||
|
|
||||||
phonon = callPackage ../development/libraries/phonon {};
|
phonon = callPackage ../development/libraries/phonon {};
|
||||||
|
|
||||||
phonon-backend-gstreamer = callPackage ../development/libraries/phonon/backends/gstreamer.nix {};
|
phonon-backend-gstreamer = callPackage ../development/libraries/phonon/backends/gstreamer.nix {};
|
||||||
|
Loading…
Reference in New Issue
Block a user