2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, bison, flex }:
|
2011-11-10 22:29:58 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "oidentd";
|
2020-05-06 04:09:58 +01:00
|
|
|
version = "2.5.0";
|
2018-11-02 06:13:17 +00:00
|
|
|
nativeBuildInputs = [ bison flex ];
|
2016-03-30 23:08:27 +01:00
|
|
|
|
2011-11-10 22:29:58 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://files.janikrabe.com/pub/oidentd/releases/${version}/${pname}-${version}.tar.gz";
|
2020-05-06 04:09:58 +01:00
|
|
|
sha256 = "1d5mqlknfywbx2bgj7ap7x6qzvz257hhqcqhy6zk45dqpsirdn7a";
|
2011-11-10 22:29:58 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-11-02 06:13:17 +00:00
|
|
|
description = "Configurable Ident protocol server";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://oidentd.janikrabe.com/";
|
2018-11-02 06:13:17 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2011-11-10 22:29:58 +00:00
|
|
|
};
|
|
|
|
}
|