Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Informatic/ab3a5e3163b7a5c4dab7c6d7b02d1e8d to your computer and use it in GitHub Desktop.
Save Informatic/ab3a5e3163b7a5c4dab7c6d7b02d1e8d to your computer and use it in GitHub Desktop.
import <nixpkgs> {
overlays = [
(final: prev: {
gst_all_1 = prev.gst_all_1 // {
gst-plugins-base = prev.gst_all_1.gst-plugins-base.overrideAttrs (p: {
buildInputs = p.buildInputs ++ [ pkgs.libdrm ];
});
};
})
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment