about summary refs log tree commit diff
path: root/pkgs/tools/networking/maphosts/default.nix
blob: 7e722fee4002e7eede2be8cce4db04adffd7e02d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, lib, bundlerEnv, ruby }:

bundlerEnv {
  name = "maphosts-1.1.1";

  inherit ruby;
  gemfile = ./Gemfile;
  lockfile = ./Gemfile.lock;
  gemset = ./gemset.nix;

  meta = with lib; {
    description = "Small command line application for keeping your project hostnames in sync with /etc/hosts";
    homepage    = https://github.com/mpscholten/maphosts;
    license     = licenses.mit;
    maintainers = with maintainers; [ mpscholten ];
    platforms   = platforms.all;
  };
}