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