sniproxy: 0.4.0 -> 0.5.0

+5 -4
+5 -4
pkgs/applications/networking/sniproxy/default.nix
··· 1 - { stdenv, fetchFromGitHub, autoconf, automake, autoreconfHook, gettext, libev, pcre, pkgconfig, udns }: 1 + { stdenv, fetchFromGitHub, autoreconfHook, gettext, libev, pcre, pkgconfig, udns }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "sniproxy-${version}"; 5 - version = "0.4.0"; 5 + version = "0.5.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "dlundquist"; 9 9 repo = "sniproxy"; 10 10 rev = version; 11 - sha256 = "1r6hv55k2z8l5q57l2q2x3nsspc2yjvi56l760yrz2c1hgh6r0a2"; 11 + sha256 = "0nspisqdl0si5zpiiwkh9hhdy6h7lxw8l09rasflyawlmm680z1i"; 12 12 }; 13 13 14 - buildInputs = [ autoconf automake autoreconfHook gettext libev pcre pkgconfig udns ]; 14 + nativeBuildInputs = [ autoreconfHook pkgconfig ]; 15 + buildInputs = [ gettext libev pcre udns ]; 15 16 16 17 meta = with stdenv.lib; { 17 18 inherit (src.meta) homepage;