backplane-client/dns-client.nix

16 lines
290 B
Nix
Raw Normal View History

2023-01-28 11:50:39 -08:00
{ pkgs, helpers, ... }:
with pkgs.lib;
let
gems = pkgs.bundlerEnv {
name = "gems-for-backplane-dns-client";
gemdir = ./.;
};
in helpers.lib.writeRubyApplication {
name = "backplane-dns-client";
inherit pkgs;
ruby = gems.wrappedRuby;
text = readFile ./dns-client.rb;
}