Migration to new CPU RAM and MOBO

This commit is contained in:
ISnortPennies 2022-12-28 12:28:39 -05:00
parent d40d26761b
commit 782953b900
9 changed files with 80 additions and 48 deletions

View file

@ -1,26 +1,34 @@
{ lib
, rustPlatform
, fetchFromGitHub
, yt-dlp
, pkg-config
, openssl
, cmake
}:
rustPlatform.buildRustPackage rec {
pname = "parrot";
version= "v1.4.2";
version= "1.4.2";
# buildFeatures = ["let_else"];
src = fetchFromGitHub {
owner = aquelemiguel;
repo = parrot;
owner = "aquelemiguel";
repo = "parrot";
rev = "28d7db3c5b50c7ba01eec71a3177875feae44bcc";
sha256 = "";
sha256 = "sha256-G9SfaiR/KIt+Xm7vLs/EGaImZeSaUbpgAArfK6oVJeM=";
};
buildInputs = [
yt-dlp
openssl
];
nativeBuildInputs = [
pkg-config
cmake
];
cargoSha256 = "";
cargoSha256 = "sha256-ScwyPTq9da0hst/b2FX89SP03OX3HrJT3oUKGsHEjgs=";
RUSTC_BOOTSTRAP = 1;
meta = with lib; {
homepage = "https://github.com/aquelemiguel/parrot";