mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
added parrot bot --doesn't work yet
This commit is contained in:
parent
a8bf781fcd
commit
d40d26761b
4 changed files with 37 additions and 3 deletions
|
|
@ -27,6 +27,7 @@
|
|||
(final: prev: rec {
|
||||
t-rex-miner = final.callPackage ./pkgs/t-rex-miner {};
|
||||
afk-cmds = final.callPackage ./pkgs/afk-cmds {};
|
||||
parrot = final.callPackage ./pkgs/parrot {};
|
||||
discord = prev.discord.override {
|
||||
withOpenASAR = true;
|
||||
nss = prev.nss_latest;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
local lspc = require("lspconfig")
|
||||
lspc.rust_analyzer.setup{}
|
||||
lspc.clangd.setup{}
|
||||
-- lspc.rust_analyzer.setup{}
|
||||
-- lspc.clangd.setup{}
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ vim-moonfly = pkgs.vimUtils.buildVimPlugin {
|
|||
};
|
||||
in
|
||||
{
|
||||
home.packages = with pkgs; [rustc cargo rust-analyzer clang-tools];
|
||||
# home.packages = with pkgs; [rustc cargo rust-analyzer clang-tools];
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
viAlias = true;
|
||||
|
|
|
|||
33
pkgs/parrot/default.nix
Normal file
33
pkgs/parrot/default.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "parrot";
|
||||
version= "v1.4.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = aquelemiguel;
|
||||
repo = parrot;
|
||||
rev = "28d7db3c5b50c7ba01eec71a3177875feae44bcc";
|
||||
sha256 = "";
|
||||
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
];
|
||||
|
||||
cargoSha256 = "";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/aquelemiguel/parrot";
|
||||
description = "";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue