1
0
Fork 0
nix-overlay/packages/rimgo.nix

30 lines
805 B
Nix
Raw Normal View History

2023-05-10 23:04:05 +00:00
{ pkgs, lib }:
2023-03-05 14:57:52 +00:00
pkgs.buildGoModule rec {
pname = "rimgo";
2023-07-10 11:03:35 +00:00
version = "2023-07-06";
2023-03-05 14:57:52 +00:00
src = pkgs.fetchFromGitea {
domain = "codeberg.org";
owner = "video-prize-ranch";
repo = pname;
2023-07-10 11:03:35 +00:00
rev = "ed21e8293e5e69b0bd5b58e5a5f054893f30bc34";
sha256 = "sha256-jlBvguaCFf4EnQJL959/pEh2TlA/KTDvh/q9CSghIt4=";
2023-03-05 14:57:52 +00:00
};
2023-06-22 20:48:33 +00:00
vendorSha256 = "sha256-iZ5mCDcLHHAESPwYLYl2eSoJ7UASP3UwKKwCtIdokcs=";
nativeBuildInputs = [ pkgs.nodePackages.tailwindcss ];
preBuild = ''
tailwindcss -i static/tailwind.css -o static/app.css -m
'';
2023-03-05 14:57:52 +00:00
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" ];
};
}