nixpkgs/pkgs/misc/cliscord/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
827 B
Nix
Raw Normal View History

{ lib, stdenv, rustPlatform, openssl, pkg-config, fetchFromGitHub, Security }:
2021-11-08 18:07:55 +00:00
rustPlatform.buildRustPackage rec {
pname = "cliscord";
version = "unstable-2020-12-08";
src = fetchFromGitHub {
owner = "somebody1234";
repo = pname;
rev = "b02fbe5516fd7f153d0b0e3c7d5d11e2ab651b43";
sha256 = "sha256-hzZozgOkw8kFppuHiX9TQxHhxKRv8utWWbhEOIzKDLo=";
};
buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
2021-11-08 18:07:55 +00:00
nativeBuildInputs = [ pkg-config ];
cargoSha256 = "12zfwdssyv0j83bff6s4376d99pv7z8ya8q8adwmf5ayvgmj4xz4";
meta = with lib; {
description = "Simple command-line tool to send text and files to discord";
homepage = "https://github.com/somebody1234/cliscord";
license = licenses.mit;
maintainers = with maintainers; [ lom ];
2021-11-08 18:07:55 +00:00
mainProgram = "cliscord";
};
}