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 12:41:18 +00:00
|
|
|
pname = "oidentd";
|
2023-03-24 00:04:41 +00:00
|
|
|
version = "3.1.0";
|
2018-11-02 06:13:17 +00:00
|
|
|
nativeBuildInputs = [ bison flex ];
|
2016-03-30 22:08:27 +00:00
|
|
|
|
2011-11-10 22:29:58 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://files.janikrabe.com/pub/oidentd/releases/${version}/${pname}-${version}.tar.gz";
|
2023-03-24 00:04:41 +00:00
|
|
|
sha256 = "sha256-yyvcnabxNkcIMOiZBjvoOm/pEjrGXFt4W4SG5lprkbc=";
|
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 01:11:51 +00: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
|
|
|
};
|
|
|
|
}
|