about summary refs log tree commit diff
path: root/pkgs/servers/http/pshs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/http/pshs/default.nix')
-rw-r--r--pkgs/servers/http/pshs/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/servers/http/pshs/default.nix b/pkgs/servers/http/pshs/default.nix
deleted file mode 100644
index e7715881541a4..0000000000000
--- a/pkgs/servers/http/pshs/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libevent, file, qrencode, miniupnpc }:
-
-stdenv.mkDerivation rec {
-  pname = "pshs";
-  version = "0.3.4";
-
-  src = fetchFromGitHub {
-    owner = "mgorny";
-    repo = "pshs";
-    rev = "v${version}";
-    sha256 = "1j8j4r0vsmp6226q6jdgf9bzhx3qk7vdliwaw7f8kcsrkndkg6p4";
-  };
-
-  nativeBuildInputs = [ autoreconfHook pkg-config ];
-  buildInputs = [ libevent file qrencode miniupnpc ];
-
-  # SSL requires libevent at 2.1 with ssl support
-  configureFlags = [ "--disable-ssl" ];
-
-  meta = {
-    description = "Pretty small HTTP server - a command-line tool to share files";
-    mainProgram = "pshs";
-    homepage = "https://github.com/mgorny/pshs";
-    license = lib.licenses.bsd3;
-    platforms = lib.platforms.linux;
-  };
-}