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