about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-10 18:48:06 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-10 19:14:31 +0100
commit4e6630041188ce69b145e4ea1dba2a5e7c2cfca0 (patch)
treef735702fa26e9ce7a0aed68e3a4c1e6f64c1926b /pkgs/servers
parent7f885c82c3145bce03c9421b34ce603d27afb261 (diff)
downloadnixlib-4e6630041188ce69b145e4ea1dba2a5e7c2cfca0.tar
nixlib-4e6630041188ce69b145e4ea1dba2a5e7c2cfca0.tar.gz
nixlib-4e6630041188ce69b145e4ea1dba2a5e7c2cfca0.tar.bz2
nixlib-4e6630041188ce69b145e4ea1dba2a5e7c2cfca0.tar.lz
nixlib-4e6630041188ce69b145e4ea1dba2a5e7c2cfca0.tar.xz
nixlib-4e6630041188ce69b145e4ea1dba2a5e7c2cfca0.tar.zst
nixlib-4e6630041188ce69b145e4ea1dba2a5e7c2cfca0.zip
radius: remove dead package
Broken since 2013. Untouched since its addition in 2010 (final
release was in 2008). Mailing list abandoned by upstream.
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/radius/default.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/pkgs/servers/radius/default.nix b/pkgs/servers/radius/default.nix
deleted file mode 100644
index a8c991e12d3e..000000000000
--- a/pkgs/servers/radius/default.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ fetchurl, stdenv, m4, groff, readline }:
-
-stdenv.mkDerivation rec {
-  name = "radius-1.6.1";
-
-  src = fetchurl {
-    url = "mirror://gnu/radius/${name}.tar.gz";
-    sha256 = "1l4k17zkbjsmk8mqrjjymagq8a8kwgrain9mcb5zp8jaf1qbclrh";
-  };
-
-  buildInputs = [ m4 groff readline ] ;
-
-  doCheck = true;
-
-  meta = {
-    description = "GNU Radius remote authentication and accounting system";
-
-    longDescription =
-      '' Radius is a server for remote user authentication and
-         accounting.  Its primary use is for Internet Service
-         Providers, though it may as well be used on any network that
-         needs a centralized authentication and/or accounting service
-         for its workstations.  The package includes an authentication
-         and accounting server and administrator tools.
-      '';
-
-    homepage = http://www.gnu.org/software/radius/;
-    license = stdenv.lib.licenses.gpl3Plus;
-
-    maintainers = [ stdenv.lib.maintainers.bjg ];
-    platforms = stdenv.lib.platforms.all;
-
-    broken = true;
-  };
-}