summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorLassulus <github@lassul.us>2018-10-10 01:24:58 +0200
committerJörg Thalheim <Mic92@users.noreply.github.com>2018-10-10 00:24:58 +0100
commit0f2869a8063daff487fb0d69ea53a7a568c7afb1 (patch)
tree542386f795f5e0017986befe28a7eb2ceb0aff99 /pkgs/tools/networking
parentfc847785d89255fb34c32fb28212a66044f655f3 (diff)
downloadnixlib-0f2869a8063daff487fb0d69ea53a7a568c7afb1.tar
nixlib-0f2869a8063daff487fb0d69ea53a7a568c7afb1.tar.gz
nixlib-0f2869a8063daff487fb0d69ea53a7a568c7afb1.tar.bz2
nixlib-0f2869a8063daff487fb0d69ea53a7a568c7afb1.tar.lz
nixlib-0f2869a8063daff487fb0d69ea53a7a568c7afb1.tar.xz
nixlib-0f2869a8063daff487fb0d69ea53a7a568c7afb1.tar.zst
nixlib-0f2869a8063daff487fb0d69ea53a7a568c7afb1.zip
quickserve: init at 2018 (#48083)
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/quickserve/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/tools/networking/quickserve/default.nix b/pkgs/tools/networking/quickserve/default.nix
new file mode 100644
index 000000000000..06e5918dccd8
--- /dev/null
+++ b/pkgs/tools/networking/quickserve/default.nix
@@ -0,0 +1,35 @@
+{ 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 {
+  name = "quickserve";
+  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 ];
+  };
+}