alpine: 2.00 -> 2.21

+6 -14
+6 -14
pkgs/applications/networking/mailreaders/alpine/default.nix
··· 3 }: 4 5 # NOTE: Please check if any changes here are applicable to ../realpine/ as well 6 - let 7 - version = "2.00"; 8 - baseName = "alpine"; 9 - in 10 - stdenv.mkDerivation { 11 - name = "${baseName}-${version}"; 12 13 src = fetchurl { 14 - url = "ftp://ftp.cac.washington.edu/alpine/alpine-${version}.tar.bz2"; 15 - sha256 = "19m2w21dqn55rhxbh5lr9qarc2fqa9wmpj204jx7a0zrb90bhpf8"; 16 }; 17 18 buildInputs = [ 19 ncurses tcl openssl pam kerberos openldap 20 ]; 21 22 - hardeningDisable = [ "format" "fortify" ]; 23 24 configureFlags = [ 25 "--with-ssl-include-dir=${openssl.dev}/include/openssl" 26 - "--with-tcl-lib=${tcl.libPrefix}" 27 "--with-passfile=.pine-passfile" 28 ]; 29 - 30 - preConfigure = '' 31 - export NIX_LDFLAGS="$NIX_LDFLAGS -lgcc_s" 32 - ''; 33 34 meta = { 35 description = "Console mail reader";
··· 3 }: 4 5 # NOTE: Please check if any changes here are applicable to ../realpine/ as well 6 + stdenv.mkDerivation rec { 7 + name = "alpine-${version}"; 8 + version = "2.21"; 9 10 src = fetchurl { 11 + url = "http://alpine.freeiz.com/alpine/release/src/${name}.tar.xz"; 12 + sha256 = "0f3llxrmaxw7w9w6aixh752md3cdc91mwfmbarkm8s413f4bcc30"; 13 }; 14 15 buildInputs = [ 16 ncurses tcl openssl pam kerberos openldap 17 ]; 18 19 + hardeningDisable = [ "format" ]; 20 21 configureFlags = [ 22 "--with-ssl-include-dir=${openssl.dev}/include/openssl" 23 "--with-passfile=.pine-passfile" 24 ]; 25 26 meta = { 27 description = "Console mail reader";