1
0
Fork 0

rimgo: remove
All checks were successful
Build / build-amd64-linux (push) Successful in 47s
Build / build-arm64-linux (push) Successful in 55s

This commit is contained in:
Daniel Kempkens 2024-04-15 22:12:34 +02:00
parent ccac626326
commit 9084a1ec08
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
3 changed files with 0 additions and 34 deletions

View file

@ -54,10 +54,6 @@ jobs:
run: |
nix build '.#redlib'
attic push ${{ secrets.ATTIC_CACHE }} ./result
- name: Build rimgo
run: |
nix build '.#rimgo'
attic push ${{ secrets.ATTIC_CACHE }} ./result
- name: Build rexit
run: |
nix build '.#rexit'

View file

@ -45,7 +45,6 @@
q = import ./packages/q.nix { inherit pkgs lib; };
redlib = import ./packages/redlib.nix { inherit pkgs lib; };
rexit = import ./packages/rexit.nix { inherit pkgs lib; };
rimgo = import ./packages/rimgo.nix { inherit pkgs lib; };
tg-archive = import ./packages/tg-archive.nix { inherit pkgs lib; };
vuetorrent = import ./packages/vuetorrent.nix { inherit pkgs lib; };

View file

@ -1,29 +0,0 @@
{ pkgs, lib }:
pkgs.buildGoModule rec {
pname = "rimgo";
version = "2023-08-16";
src = pkgs.fetchFromGitea {
domain = "codeberg.org";
owner = "video-prize-ranch";
repo = pname;
rev = "877ee7faa935aa1073dd21260f19952e018df416";
sha256 = "sha256-M40YS3T69sUzbEclr9jIl/6cJWmlvKYAsNcafaakWmg=";
};
vendorHash = "sha256-u5N7aI9RIQ3EmiyHv0qhMcKkvmpp+5G7xbzdQcbhybs=";
nativeBuildInputs = [ pkgs.nodePackages.tailwindcss ];
preBuild = ''
tailwindcss -i static/tailwind.css -o static/app.css -m
'';
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" ];
};
}