diff --git a/pkgs/mkMarkdollPlugin.nix b/pkgs/mkMarkdollPlugin.nix index d18d4f5..08524e0 100644 --- a/pkgs/mkMarkdollPlugin.nix +++ b/pkgs/mkMarkdollPlugin.nix @@ -1,16 +1,13 @@ { pkgs }: name: src: let - drv = { runtimeInputs ? [], }: - pkgs.stdenvNoCC.mkDerivation { - inherit name src; - - version = "0.0.0"; - dontUnpack = true; + drv = { buildInputs ? [], }: pkgs.stdenvNoCC.mkDerivation { + inherit name src buildInputs; + + version = "0.0.0"; + dontUnpack = true; - nativeBuildInputs = runtimeInputs; - - installPhase = " - mkdir -p $out/bin - cp -r $src $out/bin/${name} - "; - }; -in pkgs.lib.customisation.makeOverridable drv { runtimeInputs = []; } \ No newline at end of file + installPhase = " + mkdir -p $out/bin + cp $src $out/bin/${name} + "; + }; +in pkgs.lib.customisation.makeOverridable drv { buildInputs = []; } \ No newline at end of file