1
0
Fork 0
nix-overlay/packages/discord-downloader-go.nix
Daniel Kempkens 1496cc62c9
All checks were successful
Build / build-arm64-linux (push) Successful in 56s
Build / build-amd64-linux (push) Successful in 57s
discord-downloader-go: bump to 2.5.3
2024-04-28 23:58:46 +02:00

26 lines
753 B
Nix

{ pkgs, lib }:
pkgs.buildGo121Module rec {
pname = "discord-downloader-go";
version = "2.5.3";
src = pkgs.fetchFromGitHub {
owner = "get-got";
repo = pname;
rev = "v${version}";
hash = "sha256-WmVOrJz1hqxP/8hLEZmeNsd0ySNI468r8J7nkE7yJIo=";
};
vendorHash = "sha256-Wwm0VejxE6FvHpAWpXlvEcxQQlHZiFM09yjOeSO8Dhg=";
doCheck = false;
meta = with lib; {
description = "A Discord bot program to download and otherwise handle files sent in Discord channels with extensive configuration.";
homepage = "https://github.com/get-got/discord-downloader-go";
license = [ licenses.mit ];
platforms = [ "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "x86_64-linux" ];
mainProgram = "discord-downloader-go";
};
}