lol

tinc: 1.0.25 -> 1.0.26

+6 -6
+6 -6
pkgs/tools/networking/tinc/default.nix
··· 1 1 {stdenv, fetchurl, lzo, openssl, zlib}: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "1.0.25"; 4 + version = "1.0.26"; 5 5 name = "tinc-${version}"; 6 6 7 7 src = fetchurl { 8 8 url = "http://www.tinc-vpn.org/packages/tinc-${version}.tar.gz"; 9 - sha256 = "0cziyiwsfcvk12dahqwi5wh0q326yhayy8ijnrjp7mwlwmacbhf5"; 9 + sha256 = "08ds8s32cjslms1q227ihd6jz35583v378ij4pknfa5xngfijhrb"; 10 10 }; 11 11 12 12 buildInputs = [ lzo openssl zlib ]; 13 13 14 - configureFlags = '' 15 - --localstatedir=/var 16 - --sysconfdir=/etc 17 - ''; 14 + configureFlags = [ 15 + "--localstatedir=/var" 16 + "--sysconfdir=/etc" 17 + ]; 18 18 19 19 meta = { 20 20 description = "VPN daemon with full mesh routing";