From 6470edba710778587aa5381e8222f1876bbee12d Mon Sep 17 00:00:00 2001 From: Gerg-L Date: Mon, 3 Jul 2023 22:31:50 -0400 Subject: [PATCH] fixed parrot --- pkgs/parrot.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/parrot.nix b/pkgs/parrot.nix index 2cb4fe7..2818cff 100644 --- a/pkgs/parrot.nix +++ b/pkgs/parrot.nix @@ -21,6 +21,8 @@ rustPlatform.buildRustPackage hash = "sha256-f6YAdsq2ecsOCvk+A8wsUu+ywQnW//gCAkVLF0HTn8c="; }; + cargoHash = "sha256-e4NHgwoNkZ0//rugHrP0gU3pntaMeBJsV/YSzJfD8r4="; + nativeBuildInputs = [ pkg-config cmake @@ -34,11 +36,9 @@ rustPlatform.buildRustPackage postInstall = '' wrapProgram $out/bin/parrot \ - --prefix PATH ${lib.makeBinPath [ + --prefix PATH : ${lib.makeBinPath [ yt-dlp ffmpeg - ]}''; - - cargoHash = "sha256-e4NHgwoNkZ0//rugHrP0gU3pntaMeBJsV/YSzJfD8r4="; - RUSTC_BOOTSTRAP = 1; + ]} + ''; }