Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 16.09 18 lines 403 B view raw
1{ stdenv, lib, bundlerEnv, ruby, curl }: 2 3bundlerEnv { 4 name = "fluentd-0.14.0"; 5 6 inherit ruby; 7 gemfile = ./Gemfile; 8 lockfile = ./Gemfile.lock; 9 gemset = ./gemset.nix; 10 11 meta = with lib; { 12 description = "A data collector"; 13 homepage = http://www.fluentd.org/; 14 license = licenses.asl20; 15 maintainers = with maintainers; [ offline ]; 16 platforms = platforms.unix; 17 }; 18}