at 22.05-pre 20 lines 579 B view raw
1{ lib, buildPythonApplication, fetchFromGitHub }: 2 3buildPythonApplication { 4 pname = "protocol-unstable"; 5 version = "2019-03-28"; 6 7 src = fetchFromGitHub { 8 owner = "luismartingarcia"; 9 repo = "protocol"; 10 rev = "4e8326ea6c2d288be5464c3a7d9398df468c0ada"; 11 sha256 = "13l10jhf4vghanmhh3pn91b2jdciispxy0qadz4n08blp85qn9cm"; 12 }; 13 14 meta = with lib; { 15 description = "An ASCII Header Generator for Network Protocols"; 16 homepage = "https://github.com/luismartingarcia/protocol"; 17 license = licenses.gpl3; 18 maintainers = with maintainers; [ teto ]; 19 }; 20}