1
0
Fork 0
nix-overlay/packages/discord-downloader-go.nix
Daniel Kempkens a20b38c0d6
All checks were successful
Build / build-amd64-linux (push) Successful in 52s
Build / build-arm64-linux (push) Successful in 59s
discord-downloader-go: update
2024-02-11 19:00:59 +01:00

26 lines
786 B
Nix

{ pkgs, lib }:
pkgs.buildGo121Module rec {
pname = "discord-downloader-go";
version = "2.5.2-dev";
src = pkgs.fetchFromGitHub {
owner = "get-got";
repo = pname;
rev = "34c2e1e044b90817a422ace40711ee89c65b162f";
hash = "sha256-Zdxm42T4sXhhiWZaVdT1pTvmFNsmhcK5ph1S7JHZ6XQ=";
};
vendorHash = "sha256-B//+f+jQMW5fj7aeyyi6DvTed40jvc7fxsgToIK0T3w=";
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";
};
}