evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / we / webfs / package.nix
blobe3eb19a5d3490e94a3b2420d4e3bba573f1026a1
1 { lib, stdenv, fetchFromGitHub, mailcap, openssl }:
3 stdenv.mkDerivation {
4   pname = "webfs";
5   version = "1.21-unstable-2021-02-24";
7   src = fetchFromGitHub {
8     owner = "ourway";
9     repo = "webfsd";
10     rev = "228affae0774251c6925372d465eb4e648327879";
11     hash = "sha256-uTo9f66cOKSsIGLUj1E/ywMXT1peekb93UlFBrfkpN0=";
12   };
14   buildInputs = [ openssl ];
16   makeFlags = [
17     "mimefile=${placeholder "out"}/etc/mime.types"
18     "prefix=${placeholder "out"}"
19     "USE_THREADS=yes"
20   ];
22   postInstall = ''
23     install -Dm444 -t $out/etc ${mailcap}/etc/mime.types
24   '';
26   meta = with lib; {
27     description = "HTTP server for purely static content";
28     homepage = "http://linux.bytesex.org/misc/webfs.html";
29     license = licenses.gpl2Plus;
30     platforms = platforms.all;
31     maintainers = with maintainers; [ zimbatm ];
32     mainProgram = "webfsd";
33   };