summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-07-29 22:31:12 +0200
committerRobin Gloster <mail@glob.in>2019-07-29 22:31:12 +0200
commit81c88f5d29953e5d386bba63e8be730e904afd51 (patch)
tree5bee243762033698419ec419d4b5f19396310098 /pkgs/applications/networking/mailreaders
parent178cb02571eab8b4b516e1b3a4362c9a9b0feff7 (diff)
downloadnixpkgs-81c88f5d29953e5d386bba63e8be730e904afd51.tar
nixpkgs-81c88f5d29953e5d386bba63e8be730e904afd51.tar.gz
nixpkgs-81c88f5d29953e5d386bba63e8be730e904afd51.tar.bz2
nixpkgs-81c88f5d29953e5d386bba63e8be730e904afd51.tar.lz
nixpkgs-81c88f5d29953e5d386bba63e8be730e904afd51.tar.xz
nixpkgs-81c88f5d29953e5d386bba63e8be730e904afd51.tar.zst
nixpkgs-81c88f5d29953e5d386bba63e8be730e904afd51.zip
realpine: remove
upstream unmaintained, doesn't build with openssl 1.1 and no recent
changes in nixpkgs, alpine from which this was forked seems to be
maintained and a superior choice.
Diffstat (limited to 'pkgs/applications/networking/mailreaders')
-rw-r--r--pkgs/applications/networking/mailreaders/alpine/default.nix1
-rw-r--r--pkgs/applications/networking/mailreaders/realpine/default.nix42
2 files changed, 0 insertions, 43 deletions
diff --git a/pkgs/applications/networking/mailreaders/alpine/default.nix b/pkgs/applications/networking/mailreaders/alpine/default.nix
index bb62014c77a..17a3b92e2f9 100644
--- a/pkgs/applications/networking/mailreaders/alpine/default.nix
+++ b/pkgs/applications/networking/mailreaders/alpine/default.nix
@@ -2,7 +2,6 @@
 , openldap
 }:
 
-# NOTE: Please check if any changes here are applicable to ../realpine/ as well
 stdenv.mkDerivation rec {
   name = "alpine-${version}";
   version = "2.21";
diff --git a/pkgs/applications/networking/mailreaders/realpine/default.nix b/pkgs/applications/networking/mailreaders/realpine/default.nix
deleted file mode 100644
index f53c5d61050..00000000000
--- a/pkgs/applications/networking/mailreaders/realpine/default.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{stdenv, fetchurl, ncurses, tcl, openssl, pam, kerberos
-, openldap
-}:
-# NOTE: Please check if any changes here are applicable to ../alpine/ as well
-let
-  baseName = "re-alpine";
-  version = "2.03";
-in
-stdenv.mkDerivation {
-  name = "${baseName}-${version}";
-  inherit version;
-
-  src = fetchurl {
-    url = "mirror://sourceforge/re-alpine/re-alpine-${version}.tar.bz2";
-    sha256 = "11xspzbk9cwmklmcw6rxsan7j71ysd4m9c7qldlc59ck595k5nbh";
-  };
-
-  buildInputs = [
-    ncurses tcl openssl pam kerberos openldap
-  ];
-
-  hardeningDisable = [ "format" ];
-
-  configureFlags = [
-    "--with-ssl-include-dir=${openssl.dev}/include/openssl"
-    "--with-tcl-lib=${tcl.libPrefix}"
-    "--with-passfile=.pine-passfile"
-  ];
-
-  preConfigure = ''
-    export NIX_LDFLAGS="$NIX_LDFLAGS -lgcc_s"
-  '';
-
-  meta = {
-    description = "Console mail reader";
-    license = stdenv.lib.licenses.asl20;
-    maintainers = [stdenv.lib.maintainers.raskin];
-    platforms = stdenv.lib.platforms.linux;
-    homepage = https://sourceforge.net/projects/re-alpine/;
-    downloadPage = "https://sourceforge.net/projects/re-alpine/files/";
-  };
-}