Unverified Commit 8581d363 authored by Nick Cao's avatar Nick Cao
Browse files

mm-common: set strictDeps, add python3 and bash to buildInputs for shebangs

parent 372997d7
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
{ lib, stdenv
{ lib
, stdenv
, fetchurl
, bash
, gnome
, meson
, python3
@@ -15,12 +17,20 @@ stdenv.mkDerivation rec {
    sha256 = "cFxtKfQRaim95ONs/BsEbJK274xtrk6uyFAYdH5tpao=";
  };

  strictDeps = true;

  nativeBuildInputs = [
    meson
    python3
    ninja
  ];

  # for shebangs
  buildInputs = [
    python3
    bash
  ];

  passthru = {
    updateScript = gnome.updateScript {
      packageName = pname;