nixos-config/nixos/pkgs/bitwig-studio/bitwig-studio1.nix

140 lines
3.4 KiB
Nix
Raw Normal View History

2021-11-01 09:20:42 +01:00
{ stdenv
, fetchurl
, alsaLib
, bzip2
, cairo
, dpkg
, freetype
, gdk_pixbuf
, glib
, gtk2
, harfbuzz
, jdk
, lib
, xorg
, libbsd
, libjack2
, libpng
, libxkbcommon
, makeWrapper
, pixman
, xdg_utils
, zenity
, zlib
}:
2019-10-24 02:20:38 +02:00
stdenv.mkDerivation rec {
name = "bitwig-studio-${version}";
version = "1.3.16";
src = fetchurl {
2019-12-20 05:54:26 +01:00
url =
"https://downloads.bitwig.com/stable/${version}/bitwig-studio-${version}.deb";
2019-10-24 02:20:38 +02:00
sha256 = "0n0fxh9gnmilwskjcayvjsjfcs3fz9hn00wh7b3gg0cv3qqhich8";
};
nativeBuildInputs = [ dpkg makeWrapper ];
unpackCmd = "mkdir root ; dpkg-deb -x $curSrc root";
2019-12-20 05:54:26 +01:00
dontBuild = true;
2019-10-24 02:20:38 +02:00
dontPatchELF = true;
2019-12-20 05:54:26 +01:00
dontStrip = true;
2019-10-24 02:20:38 +02:00
2019-12-20 05:54:26 +01:00
libPath = with xorg;
lib.makeLibraryPath [
alsaLib
bzip2.out
cairo
freetype
gdk_pixbuf
glib
gtk2
harfbuzz
libX11
libXau
libXcursor
libXdmcp
libXext
libXfixes
libXrender
libbsd
libjack2
libpng
libxcb
libxkbfile
pixman
xcbutil
xcbutilwm
zlib
];
2019-10-24 02:20:38 +02:00
2019-12-20 05:54:26 +01:00
binPath = lib.makeBinPath [ xdg_utils zenity ];
2019-10-24 02:20:38 +02:00
installPhase = ''
mkdir -p $out
cp -r opt/bitwig-studio $out/libexec
# Use NixOS versions of these libs instead of the bundled ones.
(
cd $out/libexec/lib/bitwig-studio
rm libbz2.so* libxkbfile.so* libXcursor.so* libXau.so* \
libXdmcp.so* libpng16.so* libxcb*.so* libharfbuzz.so* \
libcairo.so* libfreetype.so*
ln -s ${bzip2.out}/lib/libbz2.so.1.0.6 libbz2.so.1.0
)
# Use our OpenJDK instead of Bitwigs bundled—and commercial!—one.
rm -rf $out/libexec/lib/jre
ln -s ${jdk.home}/jre $out/libexec/lib/jre
# Bitwigs `libx11-windowing-system.so` has several problems:
#
# • has some old version of libxkbcommon linked statically (ಠ_ಠ),
#
# • hardcodes path to `/usr/share/X11/xkb`,
#
# • even if we redirected it with libredirect (after adding
# `eaccess()` to libredirect!), their version of libxkbcommon
# is unable to parse our xkeyboardconfig. Been there, done that.
#
# However, it suffices to override theirs with our libxkbcommon
# in LD_PRELOAD. :-)
find $out -type f -executable \
-not -name '*.so.*' \
-not -name '*.so' \
-not -path '*/resources/*' | \
while IFS= read -r f ; do
patchelf \
--set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \
$f && \
wrapProgram $f \
--prefix PATH : "${binPath}" \
--prefix LD_LIBRARY_PATH : "${libPath}" \
--set LD_PRELOAD "${libxkbcommon.out}/lib/libxkbcommon.so" || true
done
mkdir -p $out/bin
ln -s $out/libexec/bitwig-studio $out/bin/bitwig-studio
cp -r usr/share $out/share
substitute usr/share/applications/bitwig-studio.desktop \
$out/share/applications/bitwig-studio.desktop \
--replace /usr/bin/bitwig-studio $out/bin/bitwig-studio
'';
meta = with lib; {
2019-10-24 02:20:38 +02:00
description = "A digital audio workstation";
longDescription = ''
Bitwig Studio is a multi-platform music-creation system for
production, performance and DJing, with a focus on flexible
editing tools and a super-fast workflow.
'';
2019-12-20 05:54:26 +01:00
homepage = "http://www.bitwig.com/";
2019-10-24 02:20:38 +02:00
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ michalrus mrVanDalo ];
};
}