summary refs log tree commit diff
path: root/pkgs/applications/networking/protocol/default.nix
blob: 6690a75485bda2574be8719147cecce3c522fba3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildPythonApplication, fetchFromGitHub }:

buildPythonApplication {
  pname = "protocol-unstable";
  version = "2019-03-28";

  src = fetchFromGitHub {
    owner = "luismartingarcia";
    repo = "protocol";
    rev = "4e8326ea6c2d288be5464c3a7d9398df468c0ada";
    sha256 = "13l10jhf4vghanmhh3pn91b2jdciispxy0qadz4n08blp85qn9cm";
  };

  meta = with lib; {
    description = "An ASCII Header Generator for Network Protocols";
    homepage = "https://github.com/luismartingarcia/protocol";
    license = licenses.gpl3;
    maintainers = with maintainers; [ teto ];
  };
}