uwsgi: 2.0.12 -> 2.0.13.1

+5 -2
+5 -2
pkgs/servers/uwsgi/default.nix
··· 33 33 34 34 stdenv.mkDerivation rec { 35 35 name = "uwsgi-${version}"; 36 - version = "2.0.12"; 36 + version = "2.0.13.1"; 37 37 38 38 src = fetchurl { 39 39 url = "http://projects.unbit.it/downloads/${name}.tar.gz"; 40 - sha256 = "02g46dnw5j1iw8fsq392bxbk8d21b9pdgb3ypcinv3b4jzdm2srh"; 40 + sha256 = "0zwdljaljzshrdcqsrr2l2ak2zcmsps4glac2lrg0xmb28phrjif"; 41 41 }; 42 42 43 43 nativeBuildInputs = [ python3 pkgconfig ]; ··· 73 73 ${lib.concatMapStringsSep "\n" (x: x.install) needed} 74 74 ''; 75 75 76 + NIX_CFLAGS_LINK = [ "-lsystemd" ]; 77 + 76 78 meta = with stdenv.lib; { 77 79 homepage = http://uwsgi-docs.readthedocs.org/en/latest/; 78 80 description = "A fast, self-healing and developer/sysadmin-friendly application container server coded in pure C"; 79 81 license = licenses.gpl2; 80 82 maintainers = with maintainers; [ abbradar ]; 83 + platforms = platforms.linux; 81 84 }; 82 85 }