Created
November 21, 2021 17:22
-
-
Save XMPPwocky/eff3fdf81d67a8440f057a0ec4d2ee5b to your computer and use it in GitHub Desktop.
alsaupgrade
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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