2018-10-10 01:24:58 +02:00
|
|
|
{ stdenv, makeWrapper, fetchzip, python3, python3Packages, writeScript }:
|
|
|
|
let
|
|
|
|
threaded_servers = python3Packages.buildPythonPackage {
|
|
|
|
name = "threaded_servers";
|
|
|
|
src = fetchzip {
|
|
|
|
url = https://xyne.archlinux.ca/projects/python3-threaded_servers/src/python3-threaded_servers-2018.6.tar.xz;
|
|
|
|
sha256 = "1irliz90a1dk4lyl7mrfq8qnnrfad9czvbcw1spc13zyai66iyhf";
|
|
|
|
};
|
|
|
|
|
|
|
|
# stuff we don't care about pacserve
|
|
|
|
doCheck = false;
|
|
|
|
};
|
|
|
|
wrappedPython = python3.withPackages (_: [ threaded_servers ]);
|
|
|
|
in stdenv.mkDerivation {
|
2018-11-05 00:32:52 +01:00
|
|
|
pname = "quickserve";
|
2018-10-10 01:24:58 +02:00
|
|
|
version = "2018";
|
|
|
|
|
|
|
|
unpackPhase = ":";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin
|
|
|
|
makeWrapper ${wrappedPython}/bin/python $out/bin/quickserve \
|
|
|
|
--add-flags -mThreadedServers.PeeredQuickserve
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A simple HTTP server for quickly sharing files.";
|
|
|
|
homepage = https://xyne.archlinux.ca/projects/quickserve/;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ lassulus ];
|
|
|
|
};
|
|
|
|
}
|