lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.05-pre 19 lines 521 B view raw
1{ lib, fetchurl, python3Packages }: 2 3python3Packages.buildPythonPackage rec { 4 pname = "hyp-server"; 5 version = "1.2.0"; 6 7 src = python3Packages.fetchPypi { 8 inherit pname version; 9 sha256 = "1lafjdcn9nnq6xc3hhyizfwh6l69lc7rixn6dx65aq71c913jc15"; 10 }; 11 12 meta = with lib; { 13 description = "Hyperminimal https server"; 14 homepage = "https://github.com/rnhmjoj/hyp"; 15 license = with licenses; [gpl3Plus mit]; 16 maintainers = with maintainers; [ rnhmjoj ]; 17 platforms = platforms.unix; 18 }; 19}