41 lines
882 B
Nix
41 lines
882 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
bundlerEnv,
|
|
ruby,
|
|
bundlerUpdateScript,
|
|
}:
|
|
|
|
let
|
|
env = bundlerEnv {
|
|
name = "maphosts-gems";
|
|
inherit ruby;
|
|
gemdir = ./.;
|
|
};
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "maphosts";
|
|
version = env.gems.maphosts.version;
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/bin"
|
|
ln -s "${env}/bin/maphosts" "$out/bin/maphosts"
|
|
'';
|
|
|
|
passthru.updateScript = bundlerUpdateScript "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";
|
|
changelog = "https://github.com/mpscholten/maphosts/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
mpscholten
|
|
nicknovitski
|
|
];
|
|
platforms = platforms.all;
|
|
mainProgram = "maphosts";
|
|
};
|
|
}
|