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

30 lines
751 B
Nix
Raw Normal View History

{ stdenv, lib, bundlerEnv, ruby, bundlerUpdateScript }:
2016-06-29 13:31:54 +02:00
2019-12-31 02:37:24 +01:00
let
env = bundlerEnv {
name = "maphosts-gems";
inherit ruby;
gemdir = ./.;
};
in stdenv.mkDerivation {
2021-07-20 12:53:50 +02:00
pname = "maphosts";
version = env.gems.maphosts.version;
2016-06-29 13:31:54 +02:00
2021-07-20 12:05:31 +02:00
dontUnpack = true;
2019-12-31 02:37:24 +01:00
installPhase = ''
mkdir -p "$out/bin"
ln -s "${env}/bin/maphosts" "$out/bin/maphosts"
'';
2016-06-29 13:31:54 +02:00
passthru.updateScript = bundlerUpdateScript "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";
2016-06-29 13:31:54 +02:00
license = licenses.mit;
maintainers = with maintainers; [ mpscholten nicknovitski ];
2016-06-29 13:31:54 +02:00
platforms = platforms.all;
};
}