Merge pull request #268565 from WolfangAukang/opendrop-openssl

opendrop: cleanup, add openssl to PATH
This commit is contained in:
Rick van Schijndel 2023-11-21 07:45:44 +01:00 committed by GitHub
commit 08b4f83812
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,24 +1,37 @@
{ lib
, buildPythonApplication
, fetchPypi
, fetchFromGitHub
, fleep
, ifaddr
, libarchive-c
, pillow
, requests-toolbelt
, setuptools
, zeroconf }:
, zeroconf
, pytestCheckHook
, openssl
}:
buildPythonApplication rec {
pname = "opendrop";
version = "0.13.0";
format = "setuptools";
src = fetchPypi {
inherit version pname;
sha256 = "sha256-FE1oGpL6C9iBhI8Zj71Pm9qkObJvSeU2gaBZwK1bTQc=";
src = fetchFromGitHub {
owner = "seemoo-lab";
repo = "opendrop";
rev = "v${version}";
hash = "sha256-4FeVQO7Z6t9mjIgesdjKx4Mi+Ro5EVGJpEFjCvB2SlA=";
};
nativeBuildInputs = [
# Tests fail if I put it on buildInputs
openssl
];
propagatedBuildInputs = [
fleep
ifaddr
libarchive-c
pillow
requests-toolbelt
@ -26,16 +39,26 @@ buildPythonApplication rec {
zeroconf
];
# There are tests, but getting the following error:
# nix_run_setup: error: argument action: invalid choice: 'test' (choose from 'receive', 'find', 'send')
# Opendrop works as intended though
doCheck = false;
makeWrapperArgs = [
"--prefix PATH : ${lib.makeBinPath nativeBuildInputs}"
];
checkInputs = [
pytestCheckHook
];
preCheck = ''
# Solves PermissionError: [Errno 13] Permission denied: '/homeless-shelter'
export HOME=$(mktemp -d)
'';
meta = with lib; {
description = "An open Apple AirDrop implementation written in Python";
homepage = "https://owlink.org/";
changelog = "https://github.com/seemoo-lab/opendrop/releases/tag/${src.rev}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ wolfangaukang ];
mainProgram = "opendrop";
platforms = [ "x86_64-linux" ];
};
}