Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9428d75536e5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8c76f185bc6c
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Sep 1, 2019

  1. tacacs+: init 4.0.4.28

    0x4A6F committed Sep 1, 2019
    Copy the full SHA
    b1bf3a8 View commit details
  2. Merge pull request #64595 from 0x4A6F/master-tacacs+

    tacacs+: init 4.0.4.28
    adisbladis authored Sep 1, 2019
    Copy the full SHA
    8c76f18 View commit details
Showing with 24 additions and 0 deletions.
  1. +22 −0 pkgs/servers/tacacs+/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
22 changes: 22 additions & 0 deletions pkgs/servers/tacacs+/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ stdenv, fetchurl, tcp_wrappers, flex, bison, perl }:

stdenv.mkDerivation rec {
pname = "tacacs+";
version = "4.0.4.28";

src = fetchurl {
url = "ftp://ftp.shrubbery.net/pub/tac_plus/tacacs-F${version}.tar.gz";
sha256 = "17i18z3s58c8yy8jxp01q3hzz5nirs4cjxms18zzkli6ip4jszql";
};

nativeBuildInputs = [ flex bison ];
buildInputs = [ tcp_wrappers perl ];

meta = with stdenv.lib; {
description = "A protocol for authentication, authorization and accounting (AAA) services for routers and network devices";
homepage = "http://www.shrubbery.net/tac_plus/";
license = licenses.free;
maintainers = [ maintainers."0x4A6F" ];
platforms = with platforms; linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -7825,6 +7825,8 @@ in
psc-package = haskell.lib.justStaticExecutables
(haskellPackages.callPackage ../development/compilers/purescript/psc-package { });

"tacacs+" = callPackage ../servers/tacacs+ { };

tamarin-prover =
(haskellPackages.callPackage ../applications/science/logic/tamarin-prover {
# NOTE: do not use the haskell packages 'graphviz' and 'maude'