maphosts: init at 1.1.1

This commit is contained in:
Marc Scholten
2016-06-29 13:31:54 +02:00
parent b8614a6c63
commit 479c08750a
6 changed files with 76 additions and 0 deletions
@@ -0,0 +1,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;
};
}