tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
uwsgi: 2.0.12 -> 2.0.13.1
Nikolay Amiantov
9 years ago
862c160e
80b22a82
+5
-2
1 changed file
expand all
collapse all
unified
split
pkgs
servers
uwsgi
default.nix
+5
-2
pkgs/servers/uwsgi/default.nix
···
33
34
stdenv.mkDerivation rec {
35
name = "uwsgi-${version}";
36
-
version = "2.0.12";
37
38
src = fetchurl {
39
url = "http://projects.unbit.it/downloads/${name}.tar.gz";
40
-
sha256 = "02g46dnw5j1iw8fsq392bxbk8d21b9pdgb3ypcinv3b4jzdm2srh";
41
};
42
43
nativeBuildInputs = [ python3 pkgconfig ];
···
73
${lib.concatMapStringsSep "\n" (x: x.install) needed}
74
'';
75
0
0
76
meta = with stdenv.lib; {
77
homepage = http://uwsgi-docs.readthedocs.org/en/latest/;
78
description = "A fast, self-healing and developer/sysadmin-friendly application container server coded in pure C";
79
license = licenses.gpl2;
80
maintainers = with maintainers; [ abbradar ];
0
81
};
82
}
···
33
34
stdenv.mkDerivation rec {
35
name = "uwsgi-${version}";
36
+
version = "2.0.13.1";
37
38
src = fetchurl {
39
url = "http://projects.unbit.it/downloads/${name}.tar.gz";
40
+
sha256 = "0zwdljaljzshrdcqsrr2l2ak2zcmsps4glac2lrg0xmb28phrjif";
41
};
42
43
nativeBuildInputs = [ python3 pkgconfig ];
···
73
${lib.concatMapStringsSep "\n" (x: x.install) needed}
74
'';
75
76
+
NIX_CFLAGS_LINK = [ "-lsystemd" ];
77
+
78
meta = with stdenv.lib; {
79
homepage = http://uwsgi-docs.readthedocs.org/en/latest/;
80
description = "A fast, self-healing and developer/sysadmin-friendly application container server coded in pure C";
81
license = licenses.gpl2;
82
maintainers = with maintainers; [ abbradar ];
83
+
platforms = platforms.linux;
84
};
85
}