summary refs log blame commit diff
path: root/pkgs/development/python-modules/deskcon/default.nix
blob: 2e205ce6955745e14c431f2daa60aebcdc8d0fd8 (plain) (tree)
1
2
3
4
5
6
7
8
9







                    
                    































                                                                                        
{ stdenv
, buildPythonPackage
, pyopenssl
, pkgs
, isPy3k
, python
}:

buildPythonPackage {
  name = "deskcon-0.3";
  disabled = isPy3k;

  src = pkgs.fetchFromGitHub {
    owner= "screenfreeze";
    repo = "deskcon-desktop";
    rev = "267804122188fa79c37f2b21f54fe05c898610e6";
    sha256 ="0i1dd85ls6n14m9q7lkympms1w3x0pqyaxvalq82s4xnjdv585j3";
  };

  phases = [ "unpackPhase" "installPhase" ];

  pythonPath = [ pyopenssl pkgs.gtk3 ];

  installPhase = ''
    substituteInPlace server/deskcon-server --replace "python2" "python"

    mkdir -p $out/bin
    mkdir -p $out/lib/${python.libPrefix}/site-packages
    cp -r "server/"* $out/lib/${python.libPrefix}/site-packages
    mv $out/lib/${python.libPrefix}/site-packages/deskcon-server $out/bin/deskcon-server

    wrapPythonProgramsIn $out/bin "$out $pythonPath"
  '';

  meta = with stdenv.lib; {
    description = "Integrates an Android device into a desktop";
    homepage = https://github.com/screenfreeze/deskcon-desktop;
    license = licenses.gpl3;
  };

}