p4: init at 2020.1.1991450 (#95103)

gstqt5
David McFarland 2020-08-21 13:37:10 -03:00 committed by GitHub
parent ddea9aced4
commit 348051b40a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ stdenv, fetchurl, lib, autoPatchelfHook }:
stdenv.mkDerivation rec {
pname = "p4";
version = "2020.1.1991450";
src = fetchurl {
url = "https://cdist2.perforce.com/perforce/r20.1/bin.linux26x86_64/helix-core-server.tgz";
sha256 = "0nhcxhwx3scx6vf7i2bc8j0b1l57lmq9bfy1cfbfbqasd3an721k";
};
sourceRoot = ".";
dontBuild = true;
nativeBuildInputs = [ autoPatchelfHook ];
installPhase = ''
mkdir -p $out/bin
cp p4 p4broker p4d p4p $out/bin
'';
meta = {
description = "Perforce Command-Line Client";
homepage = "https://www.perforce.com";
license = lib.licenses.unfree;
platforms = [ "x86_64-linux" ];
maintainers = with lib.maintainers; [ corngood ];
};
}

View File

@ -21758,6 +21758,7 @@ in
ostinato = callPackage ../applications/networking/ostinato { };
p4 = callPackage ../applications/version-management/p4 { };
p4v = libsForQt5.callPackage ../applications/version-management/p4v { };
partio = callPackage ../development/libraries/partio {};