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

24 lines
743 B
Nix

{ pkgs, lib }:
pkgs.buildGo121Module rec {
pname = "discord-downloader-go";
version = "2.5.1-dev";
src = pkgs.fetchFromGitHub {
owner = "get-got";
repo = pname;
rev = "22f7b76f30adbb33869d4a2b553e0054f2241f91";
hash = "sha256-zkTrE0rXgL/Sa+TebbsEB2K4AEOCSP3FBvqsWBTPWoY=";
};
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" ];
};
}