25 lines
468 B
Nix
25 lines
468 B
Nix
#
|
|
# Argos standalone MPD client.
|
|
#
|
|
# vim: et:ts=2:sw=2:
|
|
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
...
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "weechat-discord";
|
|
version = "2023-01-22";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "terminal-discord";
|
|
repo = "weechat-discord";
|
|
rev = "b035b20a34abacb1e9dcd6e767f31f81c6cb2322";
|
|
hash = lib.fakeHash;
|
|
};
|
|
|
|
cargoHash = lib.fakeHash;
|
|
|
|
pluginFile = "$out/lib/weechat/plugins/${pname}.so";
|
|
}
|