tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
sniproxy: 0.4.0 -> 0.5.0
Franz Pletz
8 years ago
a01f1c0a
1f2a47c7
+5
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
sniproxy
default.nix
+5
-4
pkgs/applications/networking/sniproxy/default.nix
···
1
1
-
{ stdenv, fetchFromGitHub, autoconf, automake, autoreconfHook, gettext, libev, pcre, pkgconfig, udns }:
1
1
+
{ stdenv, fetchFromGitHub, autoreconfHook, gettext, libev, pcre, pkgconfig, udns }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "sniproxy-${version}";
5
5
-
version = "0.4.0";
5
5
+
version = "0.5.0";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "dlundquist";
9
9
repo = "sniproxy";
10
10
rev = version;
11
11
-
sha256 = "1r6hv55k2z8l5q57l2q2x3nsspc2yjvi56l760yrz2c1hgh6r0a2";
11
11
+
sha256 = "0nspisqdl0si5zpiiwkh9hhdy6h7lxw8l09rasflyawlmm680z1i";
12
12
};
13
13
14
14
-
buildInputs = [ autoconf automake autoreconfHook gettext libev pcre pkgconfig udns ];
14
14
+
nativeBuildInputs = [ autoreconfHook pkgconfig ];
15
15
+
buildInputs = [ gettext libev pcre udns ];
15
16
16
17
meta = with stdenv.lib; {
17
18
inherit (src.meta) homepage;