biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / radio / tncattach / default.nix
blobc536112e63a97d106882515f41e285e8cb919dcd
1 { lib, stdenv, fetchFromGitHub, installShellFiles }:
3 stdenv.mkDerivation rec {
4   pname = "tncattach";
5   version = "0.1.9";
7   src = fetchFromGitHub {
8     owner = "markqvist";
9     repo = "tncattach";
10     rev = version;
11     sha256 = "0n7ad4gqvpgabw2i67s51lfz386wmv0cvnhxq9ygxpsqmx9aynxk";
12   };
14   nativeBuildInputs = [ installShellFiles ];
16   makeFlags = [ "compiler=$(CC)" ];
18   installPhase = ''
19     runHook preInstall
20     install -Dm755 tncattach -t $out/bin
21     installManPage tncattach.8
22     runHook postInstall
23   '';
25   meta = with lib; {
26     description = "Attach KISS TNC devices as network interfaces";
27     homepage = "https://github.com/markqvist/tncattach";
28     license = licenses.mit;
29     maintainers = with maintainers; [ sarcasticadmin ];
30     platforms = platforms.linux;
31     mainProgram = "tncattach";
32   };