nixpkgs/pkgs/tools/networking/maphosts/default.nix
2017-01-18 00:52:48 +01:00

27 lines
651 B
Nix

{ stdenv, lib, bundlerEnv, ruby }:
stdenv.mkDerivation rec {
name = "maphosts-${env.gems.maphosts.version}";
env = bundlerEnv {
name = "maphosts-gems";
inherit ruby;
gemdir = ./.;
};
phases = ["installPhase"];
installPhase = ''
mkdir -p "$out/bin"
ln -s "${env}/bin/maphosts" "$out/bin/maphosts"
'';
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;
};
}