mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
36 lines
798 B
Nix
36 lines
798 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, tornado
|
|
, futures
|
|
, html5lib
|
|
, pkgs
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "gateone";
|
|
version = "1.2-0d57c3";
|
|
disabled = isPy3k;
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
rev = "1d0e8037fbfb7c270f3710ce24154e24b7031bea";
|
|
owner= "liftoff";
|
|
repo = "GateOne";
|
|
sha256 = "1ghrawlqwv7wnck6alqpbwy9mpv0y21cw2jirrvsxaracmvgk6vv";
|
|
};
|
|
|
|
propagatedBuildInputs = [tornado futures html5lib pkgs.openssl pkgs.cacert pkgs.openssh];
|
|
|
|
postInstall=''
|
|
cp -R "$out/gateone/"* $out/lib/python2.7/site-packages/gateone
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://liftoffsoftware.com/";
|
|
description = "GateOne is a web-based terminal emulator and SSH client";
|
|
maintainers = with maintainers; [ tomberek ];
|
|
license = licenses.gpl3;
|
|
};
|
|
|
|
}
|