mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
24 lines
609 B
Nix
24 lines
609 B
Nix
{ fetchurl, bitwig-studio1, pulseaudio, xorg }:
|
|
|
|
bitwig-studio1.overrideAttrs (oldAttrs: rec {
|
|
name = "bitwig-studio-${version}";
|
|
version = "3.1.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://downloads.bitwig.com/stable/${version}/bitwig-studio-${version}.deb";
|
|
sha256 = "07djn52lz43ls6fa4k1ncz3m1nc5zv2j93hwyavnr66r0hlqy7l9";
|
|
};
|
|
|
|
buildInputs = oldAttrs.buildInputs ++ [ xorg.libXtst ];
|
|
|
|
runtimeDependencies = [ pulseaudio ];
|
|
|
|
installPhase = ''
|
|
${oldAttrs.installPhase}
|
|
|
|
# recover commercial jre
|
|
rm -f $out/libexec/lib/jre
|
|
cp -r opt/bitwig-studio/lib/jre $out/libexec/lib
|
|
'';
|
|
})
|