From 6a0ed9361b560ba198fc3d1df7e60cfcf3140f9f Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 15 Nov 2015 13:09:43 +0100 Subject: webfs: init at 1.21 --- pkgs/servers/http/webfs/default.nix | 27 +++++++++++++++++++++++++++ pkgs/servers/http/webfs/ls.c.patch | 13 +++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 pkgs/servers/http/webfs/default.nix create mode 100644 pkgs/servers/http/webfs/ls.c.patch (limited to 'pkgs/servers/http') diff --git a/pkgs/servers/http/webfs/default.nix b/pkgs/servers/http/webfs/default.nix new file mode 100644 index 000000000000..b306c73f4a50 --- /dev/null +++ b/pkgs/servers/http/webfs/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchurl, openssl, shared_mime_info }: +stdenv.mkDerivation rec { + name = "webfs-${version}"; + version = "1.21"; + + src = fetchurl { + url = "https://www.kraxel.org/releases/webfs/${name}.tar.gz"; + sha256 = "98c1cb93473df08e166e848e549f86402e94a2f727366925b1c54ab31064a62a"; + }; + + patches = [ ./ls.c.patch ]; + + buildInputs = [ openssl ]; + + makeFlags = [ + "mimefile=${shared_mime_info}/share/mime/globs" + "prefix=$(out)" + ]; + + meta = with stdenv.lib; { + description = "HTTP server for purely static content"; + homepage = http://linux.bytesex.org/misc/webfs.html; + license = licenses.gpl2; + platforms = platforms.all; + maintainers = with maintainers; [ zimbatm ]; + }; +} diff --git a/pkgs/servers/http/webfs/ls.c.patch b/pkgs/servers/http/webfs/ls.c.patch new file mode 100644 index 000000000000..78b83b725887 --- /dev/null +++ b/pkgs/servers/http/webfs/ls.c.patch @@ -0,0 +1,13 @@ +# Source: homebrew +# https://raw.githubusercontent.com/Homebrew/patches/0518a6d1/webfs/patch-ls.c +--- ./ls.c.orig Fri Oct 15 14:20:50 2004 ++++ ./ls.c Fri Oct 15 14:21:13 2004 +@@ -160,7 +160,7 @@ + return buf; + } + +-#if !defined(__FreeBSD__) && !defined(__OpenBSD__) ++#if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__APPLE__) + static void strmode(mode_t mode, char *dest) + { + static const char *rwx[] = { -- cgit 1.4.1