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 "lolcat"

View File

@@ -0,0 +1,19 @@
GEM
remote: https://rubygems.org/
specs:
lolcat (100.0.1)
manpages (~> 0.6.1)
optimist (~> 3.0.0)
paint (~> 2.1)
manpages (0.6.1)
optimist (3.0.1)
paint (2.3.0)
PLATFORMS
ruby
DEPENDENCIES
lolcat
BUNDLED WITH
2.5.22

View File

@@ -0,0 +1,26 @@
{
lib,
bundlerApp,
ruby_3_4,
bundlerUpdateScript,
}:
(bundlerApp.override { ruby = ruby_3_4; }) {
pname = "lolcat";
gemdir = ./.;
exes = [ "lolcat" ];
passthru.updateScript = bundlerUpdateScript "lolcat";
meta = with lib; {
description = "Rainbow version of cat";
homepage = "https://github.com/busyloop/lolcat";
license = licenses.bsd3;
maintainers = with maintainers; [
StillerHarpo
manveru
nicknovitski
];
mainProgram = "lolcat";
};
}

View File

@@ -0,0 +1,47 @@
{
lolcat = {
dependencies = [
"manpages"
"optimist"
"paint"
];
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "13p8i08vdqfg2bqyjkl8jsp7gw8cf6r68i8plp9zqavlqadqlg4q";
type = "gem";
};
version = "100.0.1";
};
manpages = {
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "11p6ilnfda6af15ks3xiz2pr0hkvdvadnk1xm4ahqlf84dld3fnd";
type = "gem";
};
version = "0.6.1";
};
optimist = {
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "1vg2chy1cfmdj6c1gryl8zvjhhmb3plwgyh1jfnpq4fnfqv7asrk";
type = "gem";
};
version = "3.0.1";
};
paint = {
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "1r9vx3wcx0x2xqlh6zqc81wcsn9qjw3xprcsv5drsq9q80z64z9j";
type = "gem";
};
version = "2.3.0";
};
}