tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
sniproxy: 0.6.0 -> 0.6.1
Raito Bezarius
2 years ago
8e08e348
f64c078c
+3
-13
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
sniproxy
default.nix
+3
-13
pkgs/applications/networking/sniproxy/default.nix
···
1
-
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, gettext, libev, pcre, pkg-config, udns }:
2
3
stdenv.mkDerivation rec {
4
pname = "sniproxy";
5
-
version = "0.6.0";
6
7
src = fetchFromGitHub {
8
owner = "dlundquist";
9
repo = "sniproxy";
10
rev = version;
11
-
sha256 = "0isgl2lyq8vz5kkxpgyh1sgjlb6sqqybakr64w2mfh29k5ls8xzm";
12
};
13
-
14
-
patches = [
15
-
# Pull upstream fix for -fno-common toolchain support:
16
-
# https://github.com/dlundquist/sniproxy/pull/349
17
-
(fetchpatch {
18
-
name = "fno-common.patch";
19
-
url = "https://github.com/dlundquist/sniproxy/commit/711dd14affd5d0d918cd5fd245328450e60c7111.patch";
20
-
sha256 = "1vlszib2gzxnkl9zbbrf2jz632j1nhs4aanpw7qqnx826zmli0a6";
21
-
})
22
-
];
23
24
nativeBuildInputs = [ autoreconfHook pkg-config ];
25
buildInputs = [ gettext libev pcre udns ];
···
1
+
{ lib, stdenv, fetchFromGitHub, autoreconfHook, gettext, libev, pcre, pkg-config, udns }:
2
3
stdenv.mkDerivation rec {
4
pname = "sniproxy";
5
+
version = "0.6.1";
6
7
src = fetchFromGitHub {
8
owner = "dlundquist";
9
repo = "sniproxy";
10
rev = version;
11
+
sha256 = "sha256-htM9CrzaGnn1dnsWQ+0V6N65Og7rsFob3BlSc4UGfFU=";
12
};
0
0
0
0
0
0
0
0
0
0
13
14
nativeBuildInputs = [ autoreconfHook pkg-config ];
15
buildInputs = [ gettext libev pcre udns ];