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