nixpkgs/pkgs/servers/http/pshs/default.nix

27 lines
750 B
Nix
Raw Normal View History

2021-01-15 07:07:56 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libevent, file, qrencode, miniupnpc }:
stdenv.mkDerivation rec {
pname = "pshs";
2020-07-12 11:42:29 +00:00
version = "0.3.4";
src = fetchFromGitHub {
owner = "mgorny";
repo = "pshs";
rev = "v${version}";
2020-07-12 11:42:29 +00:00
sha256 = "1j8j4r0vsmp6226q6jdgf9bzhx3qk7vdliwaw7f8kcsrkndkg6p4";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libevent file qrencode miniupnpc ];
2016-01-18 03:42:02 +00:00
# SSL requires libevent at 2.1 with ssl support
2018-07-25 21:44:21 +00:00
configureFlags = [ "--disable-ssl" ];
meta = {
description = "Pretty small HTTP server - a command-line tool to share files";
homepage = "https://github.com/mgorny/pshs";
2021-01-15 07:07:56 +00:00
license = lib.licenses.bsd3;
platforms = lib.platforms.linux;
};
}