2018-11-02 06:13:17 +00:00
|
|
|
{ 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";
|
2019-08-20 01:06:08 +00:00
|
|
|
version = "2.4.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";
|
2019-08-20 01:06:08 +00:00
|
|
|
sha256 = "132bzlbjp437lrlxv5k9aqa1q9w5pghk02rnazg33cw6av00q2li";
|
2011-11-10 22:29:58 +00:00
|
|
|
};
|
|
|
|
|
2018-11-02 06:13:17 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Configurable Ident protocol server";
|
|
|
|
homepage = https://oidentd.janikrabe.com/;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2011-11-10 22:29:58 +00:00
|
|
|
};
|
|
|
|
}
|