lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at release-16.03-start 24 lines 728 B view raw
1{ stdenv, fetchurl, pkgconfig, libevent, file, qrencode, miniupnpc }: 2 3let 4 version = "0.3"; 5in stdenv.mkDerivation { 6 name = "pshs-${version}"; 7 8 src = fetchurl { 9 url = "https://www.bitbucket.org/mgorny/pshs/downloads/pshs-${version}.tar.bz2"; 10 sha256 = "0qvy1m9jmbjhbihs1qr9nasbaajl3n0x8bgz1vw9xvpkqymx5i63"; 11 }; 12 13 buildInputs = [ pkgconfig libevent file qrencode miniupnpc ]; 14 15 # SSL requires libevent at 2.1 with ssl support 16 configureFlags = "--disable-ssl"; 17 18 meta = { 19 description = "Pretty small HTTP server - a command-line tool to share files"; 20 homepage = "https://bitbucket.org/mgorny/pshs/"; 21 license = stdenv.lib.licenses.bsd3; 22 maintainers = [ stdenv.lib.maintainers.eduarrrd ]; 23 }; 24}