pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / servers / identd / oidentd / default.nix
blob4d3c03d90564e9e38d1128c2b4ea85f85ea32fe3
1 { lib, stdenv, fetchurl, bison, flex }:
3 stdenv.mkDerivation rec {
4   pname = "oidentd";
5   version = "3.1.0";
6   nativeBuildInputs = [ bison flex ];
8   src = fetchurl {
9     url = "https://files.janikrabe.com/pub/oidentd/releases/${version}/${pname}-${version}.tar.gz";
10     sha256 = "sha256-yyvcnabxNkcIMOiZBjvoOm/pEjrGXFt4W4SG5lprkbc=";
11   };
13   meta = with lib; {
14     description = "Configurable Ident protocol server";
15     mainProgram = "oidentd";
16     homepage = "https://oidentd.janikrabe.com/";
17     license = licenses.gpl2Only;
18     platforms = platforms.linux;
19   };