mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
Migration to new CPU RAM and MOBO
This commit is contained in:
parent
d40d26761b
commit
782953b900
9 changed files with 80 additions and 48 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue