summary refs log tree commit diff
path: root/pkgs/servers/uwsgi
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-06-11 02:35:58 +0300
committerNikolay Amiantov <ab@fmap.me>2016-06-11 02:43:44 +0300
commit862c160e29afbdc0a989e77b40aee0f7b815ecfe (patch)
treeb034ee9036ae5cc8001f014c3121a093d15937a7 /pkgs/servers/uwsgi
parent80b22a823c4d08492c4d903a82186c2fda723f16 (diff)
downloadnixpkgs-862c160e29afbdc0a989e77b40aee0f7b815ecfe.tar
nixpkgs-862c160e29afbdc0a989e77b40aee0f7b815ecfe.tar.gz
nixpkgs-862c160e29afbdc0a989e77b40aee0f7b815ecfe.tar.bz2
nixpkgs-862c160e29afbdc0a989e77b40aee0f7b815ecfe.tar.lz
nixpkgs-862c160e29afbdc0a989e77b40aee0f7b815ecfe.tar.xz
nixpkgs-862c160e29afbdc0a989e77b40aee0f7b815ecfe.tar.zst
nixpkgs-862c160e29afbdc0a989e77b40aee0f7b815ecfe.zip
uwsgi: 2.0.12 -> 2.0.13.1
Diffstat (limited to 'pkgs/servers/uwsgi')
-rw-r--r--pkgs/servers/uwsgi/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/servers/uwsgi/default.nix b/pkgs/servers/uwsgi/default.nix
index 181518c2d7a..de3689a8007 100644
--- a/pkgs/servers/uwsgi/default.nix
+++ b/pkgs/servers/uwsgi/default.nix
@@ -33,11 +33,11 @@ in
 
 stdenv.mkDerivation rec {
   name = "uwsgi-${version}";
-  version = "2.0.12";
+  version = "2.0.13.1";
 
   src = fetchurl {
     url = "http://projects.unbit.it/downloads/${name}.tar.gz";
-    sha256 = "02g46dnw5j1iw8fsq392bxbk8d21b9pdgb3ypcinv3b4jzdm2srh";
+    sha256 = "0zwdljaljzshrdcqsrr2l2ak2zcmsps4glac2lrg0xmb28phrjif";
   };
 
   nativeBuildInputs = [ python3 pkgconfig ];
@@ -73,10 +73,13 @@ stdenv.mkDerivation rec {
     ${lib.concatMapStringsSep "\n" (x: x.install) needed}
   '';
 
+  NIX_CFLAGS_LINK = [ "-lsystemd" ];
+
   meta = with stdenv.lib; {
     homepage = http://uwsgi-docs.readthedocs.org/en/latest/;
     description = "A fast, self-healing and developer/sysadmin-friendly application container server coded in pure C";
     license = licenses.gpl2;
     maintainers = with maintainers; [ abbradar ];
+    platforms = platforms.linux;
   };
 }