lol

tinc: 1.0.25 -> 1.0.26

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