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";
|
2022-01-03 16:56:52 +00:00
|
|
|
version = "3.0.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";
|
2022-01-03 16:56:52 +00:00
|
|
|
sha256 = "sha256-j+ekHTUf4Ny4a43/FoSARDowWTglJmvqrY3PlF2Jnio=";
|
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";
|
|
|
|
homepage = "https://oidentd.janikrabe.com/";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|