2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, buildPythonApplication, fetchFromGitHub }:
|
2017-12-26 07:40:14 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
buildPythonApplication {
|
2019-11-06 18:38:03 +00:00
|
|
|
pname = "protocol-unstable";
|
|
|
|
version = "2019-03-28";
|
2017-12-26 07:40:14 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "luismartingarcia";
|
|
|
|
repo = "protocol";
|
2019-11-06 18:38:03 +00:00
|
|
|
rev = "4e8326ea6c2d288be5464c3a7d9398df468c0ada";
|
|
|
|
sha256 = "13l10jhf4vghanmhh3pn91b2jdciispxy0qadz4n08blp85qn9cm";
|
2017-12-26 07:40:14 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-12-26 07:40:14 +00:00
|
|
|
description = "An ASCII Header Generator for Network Protocols";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/luismartingarcia/protocol";
|
2017-12-26 07:40:14 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ teto ];
|
|
|
|
};
|
|
|
|
}
|