cd95173502
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/3z75x46yp38ckpdvadhdk2mnvj1dz79s-dante-1.4.2/bin/sockd -h` got 0 exit code - ran `/nix/store/3z75x46yp38ckpdvadhdk2mnvj1dz79s-dante-1.4.2/bin/sockd -v` and found version 1.4.2 - ran `/nix/store/3z75x46yp38ckpdvadhdk2mnvj1dz79s-dante-1.4.2/bin/sockd -h` and found version 1.4.2 - found 1.4.2 with grep in /nix/store/3z75x46yp38ckpdvadhdk2mnvj1dz79s-dante-1.4.2 - found 1.4.2 in filename of file in /nix/store/3z75x46yp38ckpdvadhdk2mnvj1dz79s-dante-1.4.2
24 lines
656 B
Nix
24 lines
656 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation (rec {
|
|
name = "dante-${version}";
|
|
version = "1.4.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.inet.no/dante/files/${name}.tar.gz";
|
|
sha256 = "1bfafnm445afrmyxvvcl8ckq0p59yzykmr3y8qvryzrscd85g8ms";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--with-libc=libc.so.6"
|
|
];
|
|
|
|
meta = {
|
|
description = "A circuit-level SOCKS client/server that can be used to provide convenient and secure network connectivity.";
|
|
homepage = "https://www.inet.no/dante/";
|
|
maintainers = [ stdenv.lib.maintainers.arobyn ];
|
|
license = stdenv.lib.licenses.bsdOriginal;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
})
|