pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / servers / identd / nullidentdmod / default.nix
blob7df6eac5fb0d6f245dad5449a0f28e0f985fe14f
1 { lib, stdenv, fetchFromGitHub, ... }:
3 stdenv.mkDerivation rec {
4   pname = "nullidentdmod";
5   version = "1.3";
7   src = fetchFromGitHub {
8     owner = "Acidhub";
9     repo = "nullidentdmod";
10     rev = "v${version}";
11     sha256 = "1ahwm5pyidc6m07rh5ls2lc25kafrj233nnbcybprgl7bqdq1b0k";
12   };
14   installPhase = ''
15     mkdir -p $out/bin
17     install -Dm755 nullidentdmod $out/bin
18   '';
20   meta = with lib; {
21     description = "Simple identd that just replies with a random string or customized userid";
22     mainProgram = "nullidentdmod";
23     license = licenses.gpl2Plus;
24     homepage = "http://acidhub.click/NullidentdMod";
25     maintainers = with maintainers; [ das_j ];
26     platforms = platforms.linux; # Must be run by systemd
27   };