summary refs log tree commit diff
path: root/pkgs/development/libraries/v8
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-09-07 10:20:22 +0100
committerJörg Thalheim <joerg@thalheim.io>2017-09-07 10:20:22 +0100
commit9ee572745994723447ceacffb87113753b616ab9 (patch)
tree57561aba2f3e8278c957c793a6417a72df435bac /pkgs/development/libraries/v8
parent382afe8c62221851486cbfb0f2f3e596a3883367 (diff)
downloadnixpkgs-9ee572745994723447ceacffb87113753b616ab9.tar
nixpkgs-9ee572745994723447ceacffb87113753b616ab9.tar.gz
nixpkgs-9ee572745994723447ceacffb87113753b616ab9.tar.bz2
nixpkgs-9ee572745994723447ceacffb87113753b616ab9.tar.lz
nixpkgs-9ee572745994723447ceacffb87113753b616ab9.tar.xz
nixpkgs-9ee572745994723447ceacffb87113753b616ab9.tar.zst
nixpkgs-9ee572745994723447ceacffb87113753b616ab9.zip
v8: remove 3.14.5.10
was only used by mongodb248
Diffstat (limited to 'pkgs/development/libraries/v8')
-rw-r--r--pkgs/development/libraries/v8/3.14.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/development/libraries/v8/3.14.nix b/pkgs/development/libraries/v8/3.14.nix
deleted file mode 100644
index fee0f868ea9..00000000000
--- a/pkgs/development/libraries/v8/3.14.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ stdenv, callPackage, fetchFromGitHub, python, ... } @ args:
-with stdenv.lib;
-let
-  version = "3.14.5.10";
-  sha256 = "08vhl84166x13b3cbx8y0g99yqx772zd33gawsa1nxqkyrykql6k";
-in
-(callPackage ./generic.nix (args // {
-  inherit version sha256;
-})).overrideDerivation (oldAttrs:{
-  patchPhase = [
-    oldAttrs.patchPhase
-    "sed -i 's,#!/usr/bin/python,#!${python}/bin/python,' build/gyp_v8"
-  ];
-
-  # http://code.google.com/p/v8/issues/detail?id=2149
-  NIX_CFLAGS_COMPILE = concatStringsSep " " [
-    oldAttrs.NIX_CFLAGS_COMPILE
-    "-Wno-unused-local-typedefs"
-    "-Wno-aggressive-loop-optimizations"
-  ];
-
-  src = fetchFromGitHub {
-    owner = "v8";
-    repo = "v8";
-    rev = "${version}";
-    inherit sha256;
-  };
-})