Skip to content

Instantly share code, notes, and snippets.

@XMPPwocky
Created November 21, 2021 17:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save XMPPwocky/eff3fdf81d67a8440f057a0ec4d2ee5b to your computer and use it in GitHub Desktop.
Save XMPPwocky/eff3fdf81d67a8440f057a0ec4d2ee5b to your computer and use it in GitHub Desktop.
alsaupgrade
pkgs.bitwig-studio4.override {
alsa-lib = pkgs.alsa-lib.overrideAttrs (old: {
# we need to add autoreconfHook when building from GitHub - the nixpkgs version
# fetches the source as a tarball which has already had
# automake/autoconf run.
nativeBuildInputs = [ pkgs.autoreconfHook ];
src = pkgs.fetchFromGitHub {
owner = "alsa-project";
repo = "alsa-lib";
rev = "7ffe3d41626279e43fddfec8a02f520c3b79190e";
hash = "sha256-PMVk8Ozv0+R5DTIpQV331Op5Z3Lfpw6j3ziHwj3Tcj4=";
};
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment