push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'watson-ruby'

View File

@@ -0,0 +1,15 @@
GEM
remote: https://rubygems.org/
specs:
json (2.1.0)
watson-ruby (1.6.3)
json
PLATFORMS
ruby
DEPENDENCIES
watson-ruby
BUNDLED WITH
2.1.4

View File

@@ -0,0 +1,42 @@
{
lib,
stdenv,
bundlerEnv,
ruby,
bundlerUpdateScript,
}:
stdenv.mkDerivation rec {
pname = "watson-ruby";
version = (import ./gemset.nix).watson-ruby.version;
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; {
description = "Inline issue manager";
homepage = "https://goosecode.com/watson/";
license = with licenses; mit;
maintainers = with maintainers; [
robertodr
nicknovitski
];
mainProgram = "watson";
platforms = platforms.unix;
};
}

View File

@@ -0,0 +1,18 @@
{
json = {
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "01v6jjpvh3gnq6sgllpfqahlgxzj50ailwhj9b3cd20hi2dx0vxp";
type = "gem";
};
version = "2.1.0";
};
watson-ruby = {
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "1d5m29nr0i030q8ygmbapwri5ndcg2q6lf8a15bk79lfcp9xyj9w";
type = "gem";
};
version = "1.6.3";
};
}