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: 35f205a4b624
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2756fac2ae32
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Sep 22, 2017

  1. radsecproxy: init at 1.6.9

    sargon committed Sep 22, 2017
    Copy the full SHA
    8bb57bc View commit details

Commits on Sep 23, 2017

  1. Merge pull request #29667 from sargon/radsecproxy

    radsecproxy: init at 1.6.9
    joachifm authored Sep 23, 2017
    Copy the full SHA
    2756fac View commit details
Showing with 32 additions and 0 deletions.
  1. +30 −0 pkgs/tools/networking/radsecproxy/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
30 changes: 30 additions & 0 deletions pkgs/tools/networking/radsecproxy/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{ stdenv, fetchurl, openssl }:

stdenv.mkDerivation rec {

name = "radsecproxy-${version}";
version = "1.6.9";

src = fetchurl {
url = "https://software.nordu.net/radsecproxy/radsecproxy-${version}.tar.xz";
sha256 = "6f2c7030236c222782c9ac2c52778baa63540a1865b75a7a6d8c1280ce6ad816";
};

buildInputs = [ openssl ];

configureFlags = [
"--with-ssl=${openssl.dev}"
"--sysconfdir=/etc"
"--localstatedir=/var"
];

meta = with stdenv.lib; {
homepage = https://software.nordu.net/radsecproxy/;
description = "A generic RADIUS proxy that supports both UDP and TLS (RadSec) RADIUS transports.";
license = licenses.bsd;
maintainers = with maintainers; [ sargon ];
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
@@ -4060,6 +4060,8 @@ with pkgs;

radeon-profile = libsForQt5.callPackage ../tools/misc/radeon-profile { };

radsecproxy = callPackage ../tools/networking/radsecproxy { };

radvd = callPackage ../tools/networking/radvd { };

rainbowstream = pythonPackages.rainbowstream;