pkgs/foot-transparent: add missing meson flag

This commit is contained in:
raf 2023-11-05 19:13:28 +03:00
parent 90503bc911
commit 960f96eda5
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29

View file

@ -36,12 +36,13 @@
reposilite-bin = pkgs.callPackage ./reposilite-bin {};
# patched packages
foot-transparent = pkgs.foot.overrideAttrs (old: {
foot-transparent = pkgs.foot.overrideAttrs (prev: {
patches =
(old.patches or [])
(prev.patches or [])
++ [
../patches/0001-foot-transparent.patch
];
mesonFlags = prev.mesonFlags ++ ["-Dfullscreen_alpha=true"];
});
};
};