sniproxy: 0.6.0 -> 0.6.1

+3 -13
+3 -13
pkgs/applications/networking/sniproxy/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, gettext, libev, pcre, pkg-config, udns }: 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, gettext, libev, pcre, pkg-config, udns }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "sniproxy"; 5 - version = "0.6.0"; 5 + version = "0.6.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "dlundquist"; 9 9 repo = "sniproxy"; 10 10 rev = version; 11 - sha256 = "0isgl2lyq8vz5kkxpgyh1sgjlb6sqqybakr64w2mfh29k5ls8xzm"; 11 + sha256 = "sha256-htM9CrzaGnn1dnsWQ+0V6N65Og7rsFob3BlSc4UGfFU="; 12 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 13 24 14 nativeBuildInputs = [ autoreconfHook pkg-config ]; 25 15 buildInputs = [ gettext libev pcre udns ];