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

This commit is contained in:
Nick Cao
2023-10-29 16:02:36 -04:00
parent 372997d766
commit 8581d363d9
@@ -1,5 +1,7 @@
{ 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;