1
0
Fork 0

rimgo: init

This commit is contained in:
Daniel Kempkens 2023-03-05 15:57:52 +01:00
parent b1779e86ed
commit c93f847fce
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
5 changed files with 27 additions and 0 deletions

View file

@ -24,6 +24,7 @@ jobs:
- run: nix build '.#luarocks-jsregexp' - run: nix build '.#luarocks-jsregexp'
- run: nix build '.#nitter-unstable' - run: nix build '.#nitter-unstable'
- run: nix build '.#q' - run: nix build '.#q'
- run: nix build '.#rimgo'
- run: nix build '.#website-docs-nifoc-pw' - run: nix build '.#website-docs-nifoc-pw'
build-x86_64-darwin: build-x86_64-darwin:

View file

@ -10,3 +10,4 @@
* [nitter](https://github.com/zedeus/nitter) * [nitter](https://github.com/zedeus/nitter)
* [phantomjs](https://github.com/ariya/phantomjs) * [phantomjs](https://github.com/ariya/phantomjs)
* [q](https://github.com/natesales/q) * [q](https://github.com/natesales/q)
* [rimgo](https://codeberg.org/video-prize-ranch/rimgo)

View file

@ -12,5 +12,6 @@ in
inherit (custom) nitter-unstable; inherit (custom) nitter-unstable;
inherit (custom) phantomjs; inherit (custom) phantomjs;
inherit (custom) q; inherit (custom) q;
inherit (custom) rimgo;
inherit (custom) website-docs-nifoc-pw; inherit (custom) website-docs-nifoc-pw;
} }

View file

@ -9,5 +9,6 @@
nitter-unstable = import ./packages/nitter-unstable.nix { inherit system lib pkgs; }; nitter-unstable = import ./packages/nitter-unstable.nix { inherit system lib pkgs; };
phantomjs = import ./packages/phantomjs.nix { inherit system lib pkgs; }; phantomjs = import ./packages/phantomjs.nix { inherit system lib pkgs; };
q = import ./packages/q.nix { inherit system lib pkgs; }; q = import ./packages/q.nix { inherit system lib pkgs; };
rimgo = import ./packages/rimgo.nix { inherit system lib pkgs; };
website-docs-nifoc-pw = import ./packages/website-docs-nifoc-pw.nix { inherit system lib pkgs; }; website-docs-nifoc-pw = import ./packages/website-docs-nifoc-pw.nix { inherit system lib pkgs; };
} }

23
packages/rimgo.nix Normal file
View file

@ -0,0 +1,23 @@
{ system, lib, pkgs }:
pkgs.buildGoModule rec {
pname = "rimgo";
version = "2023-02-25";
src = pkgs.fetchFromGitea {
domain = "codeberg.org";
owner = "video-prize-ranch";
repo = pname;
rev = "c6a9ca3443e5ab9b9794c99cd349112c926462a1";
hash = "sha256-vHOITcSrGNz+1lw+9RIBssi0RjqOTpVb7Z+Yvj3AD0I=";
};
vendorSha256 = "sha256-T2zcQB9jOldnB+0rYsTSAhjrL77Hk+oHpKecS7h2U2c=";
meta = with lib; {
description = "An alternative frontend for Imgur.";
homepage = "https://codeberg.org/video-prize-ranch/rimgo";
license = [ licenses.agpl3 ];
platforms = [ "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "x86_64-linux" ];
};
}