2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, bison, flex }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "oidentd";
|
2023-03-27 19:17:25 +00:00
|
|
|
version = "3.1.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
nativeBuildInputs = [ bison flex ];
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://files.janikrabe.com/pub/oidentd/releases/${version}/${pname}-${version}.tar.gz";
|
2023-03-27 19:17:25 +00:00
|
|
|
sha256 = "sha256-yyvcnabxNkcIMOiZBjvoOm/pEjrGXFt4W4SG5lprkbc=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Configurable Ident protocol server";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "oidentd";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://oidentd.janikrabe.com/";
|
2024-06-05 15:53:02 +00:00
|
|
|
license = licenses.gpl2Only;
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|