flutter_volume_controller: remove unused input

This commit is contained in:
aucub 2024-11-23 12:49:56 +08:00
parent 6d1e1e14cc
commit 950205b1cd

View File

@ -1,11 +1,10 @@
{ {
stdenv, stdenv,
mdk-sdk,
}: }:
{ version, src, ... }: { version, src, ... }:
stdenv.mkDerivation rec { stdenv.mkDerivation {
pname = "flutter_volume_controller"; pname = "flutter_volume_controller";
inherit version src; inherit version src;
inherit (src) passthru; inherit (src) passthru;
@ -18,8 +17,10 @@ stdenv.mkDerivation rec {
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall
mkdir $out mkdir $out
cp -r ./* $out/ cp -r ./* $out/
runHook postInstall runHook postInstall
''; '';
} }