nixpkgs/pkgs/tools/networking/maphosts/default.nix

29 lines
716 B
Nix
Raw Normal View History

2016-06-29 13:31:54 +02:00
{ stdenv, lib, bundlerEnv, ruby }:
stdenv.mkDerivation rec {
name = "maphosts-${env.gems.maphosts.version}";
2016-06-29 13:31:54 +02:00
env = bundlerEnv {
name = "maphosts-gems";
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
};
phases = ["installPhase"];
installPhase = ''
mkdir -p "$out/bin"
ln -s "${env}/bin/maphosts" "$out/bin/maphosts"
'';
2016-06-29 13:31:54 +02:00
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;
};
}