mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 11:05:14 +00:00
cliscord: init at unstable-2020-12-08
This commit is contained in:
parent
edc5b763a1
commit
33c50db65d
27
pkgs/misc/cliscord/default.nix
Normal file
27
pkgs/misc/cliscord/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib, rustPlatform, openssl, pkg-config, fetchFromGitHub }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "cliscord";
|
||||
version = "unstable-2020-12-08";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "somebody1234";
|
||||
repo = pname;
|
||||
rev = "b02fbe5516fd7f153d0b0e3c7d5d11e2ab651b43";
|
||||
sha256 = "sha256-hzZozgOkw8kFppuHiX9TQxHhxKRv8utWWbhEOIzKDLo=";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
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; [ legendofmiracles ];
|
||||
mainProgram = "cliscord";
|
||||
};
|
||||
}
|
@ -13160,6 +13160,8 @@ with pkgs;
|
||||
|
||||
clips = callPackage ../development/interpreters/clips { };
|
||||
|
||||
cliscord = callPackage ../misc/cliscord/default.nix { };
|
||||
|
||||
clisp = callPackage ../development/interpreters/clisp { };
|
||||
clisp-tip = callPackage ../development/interpreters/clisp/hg.nix { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user