nixpkgs/pkgs/servers/identd/oidentd/default.nix
R. RyanTM 560e7d7c59 oidentd: 2.3.1 -> 2.3.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/oidentd/versions
2019-01-17 08:08:05 +00:00

20 lines
535 B
Nix

{ stdenv, fetchurl, bison, flex }:
stdenv.mkDerivation rec {
name = "oidentd-${version}";
version = "2.3.2";
nativeBuildInputs = [ bison flex ];
src = fetchurl {
url = "https://files.janikrabe.com/pub/oidentd/releases/${version}/${name}.tar.gz";
sha256 = "10c5jkhirkvm1s4v3zdj4micfi6rkfjj32q4k7wjwh1fnzrwyb5n";
};
meta = with stdenv.lib; {
description = "Configurable Ident protocol server";
homepage = https://oidentd.janikrabe.com/;
license = licenses.gpl2;
platforms = platforms.linux;
};
}