nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 20 lines 264 B view raw
1{ 2 buildDunePackage, 3 httpun, 4 gluten-eio, 5}: 6 7buildDunePackage { 8 pname = "httpun-eio"; 9 10 inherit (httpun) src version; 11 12 propagatedBuildInputs = [ 13 gluten-eio 14 httpun 15 ]; 16 17 meta = httpun.meta // { 18 description = "EIO support for httpun"; 19 }; 20}