nixpkgs/pkgs/tools/networking/maphosts/default.nix
2024-02-11 03:19:15 +01:00

31 lines
781 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";
license = licenses.mit;
maintainers = with maintainers; [ mpscholten nicknovitski ];
platforms = platforms.all;
mainProgram = "maphosts";
};
}