nixpkgs/pkgs/development/tools/misc/watson-ruby/default.nix

31 lines
799 B
Nix
Raw Normal View History

{ lib, stdenv, bundlerEnv, ruby, bundlerUpdateScript }:
2017-09-25 14:51:16 +01:00
stdenv.mkDerivation rec {
pname = "watson-ruby";
2017-09-25 14:51:16 +01:00
version = (import ./gemset.nix).watson-ruby.version;
2021-07-27 13:33:36 +01:00
dontUnpack = true;
installPhase = let
env = bundlerEnv {
name = "watson-ruby-gems-${version}";
inherit ruby;
# expects Gemfile, Gemfile.lock and gemset.nix in the same directory
gemdir = ./.;
};
in ''
mkdir -p $out/bin
ln -s ${env}/bin/watson $out/bin/watson
'';
passthru.updateScript = bundlerUpdateScript "watson-ruby";
meta = with lib; {
2017-09-25 14:51:16 +01:00
description = "An inline issue manager";
homepage = "https://goosecode.com/watson/";
2017-09-25 14:51:16 +01:00
license = with licenses; mit;
maintainers = with maintainers; [ robertodr nicknovitski ];
2017-09-25 14:51:16 +01:00
platforms = platforms.unix;
};
}