p4v: init at 2017.3.1601999
This commit is contained in:
parent
8f9e814132
commit
b07bc129cb
@ -2516,6 +2516,11 @@
|
|||||||
github = "ninjatrappeur";
|
github = "ninjatrappeur";
|
||||||
name = "Félix Baylac-Jacqué";
|
name = "Félix Baylac-Jacqué";
|
||||||
};
|
};
|
||||||
|
nioncode = {
|
||||||
|
email = "nioncode+github@gmail.com";
|
||||||
|
github = "nioncode";
|
||||||
|
name = "Nicolas Schneider";
|
||||||
|
};
|
||||||
nipav = {
|
nipav = {
|
||||||
email = "niko.pavlinek@gmail.com";
|
email = "niko.pavlinek@gmail.com";
|
||||||
github = "nipav";
|
github = "nipav";
|
||||||
|
48
pkgs/applications/version-management/p4v/default.nix
Normal file
48
pkgs/applications/version-management/p4v/default.nix
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
{ stdenv, fetchurl, lib, qtbase, qtmultimedia, qtscript, qtsensors, qtwebkit, openssl, xkeyboard_config, makeWrapper }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "p4v-${version}";
|
||||||
|
version = "2017.3.1601999";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://cdist2.perforce.com/perforce/r17.3/bin.linux26x86_64/p4v.tgz";
|
||||||
|
sha256 = "f317607f1bc8877db01ff020b8b0857c2d0f8600474d152749264aea0be66b21";
|
||||||
|
};
|
||||||
|
|
||||||
|
dontBuild = true;
|
||||||
|
nativeBuildInputs = [makeWrapper];
|
||||||
|
|
||||||
|
ldLibraryPath = lib.makeLibraryPath [
|
||||||
|
stdenv.cc.cc.lib
|
||||||
|
qtbase
|
||||||
|
qtmultimedia
|
||||||
|
qtscript
|
||||||
|
qtsensors
|
||||||
|
qtwebkit
|
||||||
|
openssl
|
||||||
|
];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir $out
|
||||||
|
cp -r bin $out
|
||||||
|
mkdir -p $out/lib/p4v
|
||||||
|
cp -r lib/p4v/P4VResources $out/lib/p4v
|
||||||
|
|
||||||
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/bin/p4merge.bin
|
||||||
|
|
||||||
|
for f in $out/bin/*.bin ; do
|
||||||
|
wrapProgram $f \
|
||||||
|
--suffix LD_LIBRARY_PATH : ${ldLibraryPath} \
|
||||||
|
--suffix QT_XKB_CONFIG_ROOT : ${xkeyboard_config}/share/X11/xkb \
|
||||||
|
--suffix QT_PLUGIN_PATH : ${qtbase.bin}/${qtbase.qtPluginPrefix}
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Perforce Visual Client";
|
||||||
|
homepage = http://www.perforce.com;
|
||||||
|
license = stdenv.lib.licenses.unfreeRedistributable;
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
maintainers = [ stdenv.lib.maintainers.nioncode ];
|
||||||
|
};
|
||||||
|
}
|
@ -16736,6 +16736,8 @@ with pkgs;
|
|||||||
|
|
||||||
ostinato = callPackage ../applications/networking/ostinato { };
|
ostinato = callPackage ../applications/networking/ostinato { };
|
||||||
|
|
||||||
|
p4v = libsForQt5.callPackage ../applications/version-management/p4v { };
|
||||||
|
|
||||||
panamax_api = callPackage ../applications/networking/cluster/panamax/api { };
|
panamax_api = callPackage ../applications/networking/cluster/panamax/api { };
|
||||||
panamax_ui = callPackage ../applications/networking/cluster/panamax/ui { };
|
panamax_ui = callPackage ../applications/networking/cluster/panamax/ui { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user