added parrot bot --doesn't work yet

This commit is contained in:
ISnortPennies 2022-11-08 18:24:48 -05:00
parent a8bf781fcd
commit d40d26761b
4 changed files with 37 additions and 3 deletions

33
pkgs/parrot/default.nix Normal file
View 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;
};
}