p4v: 2017.3.1601999 -> 2020.1.1966006
This commit is contained in:
parent
552c4d84ca
commit
041f70f62f
@ -1,16 +1,16 @@
|
|||||||
{ stdenv, fetchurl, lib, qtbase, qtmultimedia, qtscript, qtsensors, qtwebkit, openssl_1_0_2, xkeyboard_config, wrapQtAppsHook }:
|
{ stdenv, fetchurl, lib, qtbase, qtmultimedia, qtscript, qtsensors, qtwebengine, qtwebkit, openssl, xkeyboard_config, patchelfUnstable, wrapQtAppsHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "p4v";
|
pname = "p4v";
|
||||||
version = "2017.3.1601999";
|
version = "2020.1.1966006";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://cdist2.perforce.com/perforce/r17.3/bin.linux26x86_64/p4v.tgz";
|
url = "https://cdist2.perforce.com/perforce/r20.1/bin.linux26x86_64/p4v.tgz";
|
||||||
sha256 = "9ded42683141e1808535ec3e87d3149f890315c192d6e97212794fd54862b9a4";
|
sha256 = "0zc70d7jgdrd2jli338n1h05hgb7jmmv8hvq205wh78vvllrlv10";
|
||||||
};
|
};
|
||||||
|
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
nativeBuildInputs = [ wrapQtAppsHook ];
|
nativeBuildInputs = [ patchelfUnstable wrapQtAppsHook ];
|
||||||
|
|
||||||
ldLibraryPath = lib.makeLibraryPath [
|
ldLibraryPath = lib.makeLibraryPath [
|
||||||
stdenv.cc.cc.lib
|
stdenv.cc.cc.lib
|
||||||
@ -18,26 +18,33 @@ stdenv.mkDerivation rec {
|
|||||||
qtmultimedia
|
qtmultimedia
|
||||||
qtscript
|
qtscript
|
||||||
qtsensors
|
qtsensors
|
||||||
|
qtwebengine
|
||||||
qtwebkit
|
qtwebkit
|
||||||
openssl_1_0_2
|
openssl
|
||||||
];
|
];
|
||||||
|
|
||||||
dontWrapQtApps = true;
|
dontWrapQtApps = true;
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir $out
|
mkdir $out
|
||||||
cp -r bin $out
|
cp -r bin $out
|
||||||
mkdir -p $out/lib/p4v
|
mkdir -p $out/lib
|
||||||
cp -r lib/p4v/P4VResources $out/lib/p4v
|
cp -r lib/P4VResources $out/lib
|
||||||
|
|
||||||
for f in $out/bin/*.bin ; do
|
for f in $out/bin/*.bin ; do
|
||||||
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $f
|
patchelf --set-rpath $ldLibraryPath --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $f
|
||||||
|
# combining this with above breaks rpath (patchelf bug?)
|
||||||
|
patchelf --add-needed libstdc++.so $f \
|
||||||
|
--clear-symbol-version _ZNSt20bad_array_new_lengthD1Ev \
|
||||||
|
--clear-symbol-version _ZTVSt20bad_array_new_length \
|
||||||
|
--clear-symbol-version _ZTISt20bad_array_new_length \
|
||||||
|
$f
|
||||||
wrapQtApp $f \
|
wrapQtApp $f \
|
||||||
--suffix LD_LIBRARY_PATH : ${ldLibraryPath} \
|
|
||||||
--suffix QT_XKB_CONFIG_ROOT : ${xkeyboard_config}/share/X11/xkb
|
--suffix QT_XKB_CONFIG_ROOT : ${xkeyboard_config}/share/X11/xkb
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
dontFixup = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Perforce Visual Client";
|
description = "Perforce Visual Client";
|
||||||
homepage = "https://www.perforce.com";
|
homepage = "https://www.perforce.com";
|
||||||
|
Loading…
Reference in New Issue
Block a user