ks: add completions for bash and zsh (#364049)
[NixPkgs.git] / pkgs / by-name / oi / oidentd / package.nix
blob4be824f00e4c2572b40973af97186e1c132bab4b
2   lib,
3   stdenv,
4   fetchurl,
5   bison,
6   flex,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "oidentd";
11   version = "3.1.0";
12   nativeBuildInputs = [
13     bison
14     flex
15   ];
17   src = fetchurl {
18     url = "https://files.janikrabe.com/pub/oidentd/releases/${version}/${pname}-${version}.tar.gz";
19     sha256 = "sha256-yyvcnabxNkcIMOiZBjvoOm/pEjrGXFt4W4SG5lprkbc=";
20   };
22   meta = with lib; {
23     description = "Configurable Ident protocol server";
24     mainProgram = "oidentd";
25     homepage = "https://oidentd.janikrabe.com/";
26     license = licenses.gpl2Only;
27     platforms = platforms.linux;
28   };