4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
42 lines
1 KiB
Nix
42 lines
1 KiB
Nix
{ lib, stdenv
|
|
, buildPythonPackage
|
|
, pyopenssl
|
|
, pkgs
|
|
, isPy3k
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "deskcon";
|
|
version = "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 lib; {
|
|
description = "Integrates an Android device into a desktop";
|
|
homepage = "https://github.com/screenfreeze/deskcon-desktop";
|
|
license = licenses.gpl3;
|
|
};
|
|
|
|
}
|