mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
74 lines
2.2 KiB
Nix
74 lines
2.2 KiB
Nix
{ stdenv, fetchurl, alsa-lib, cairo, dpkg, freetype
|
|
, gdk-pixbuf, glib, gtk3, lib, xorg
|
|
, libglvnd, libjack2, ffmpeg
|
|
, libxkbcommon, xdg-utils, zlib, pulseaudio
|
|
, wrapGAppsHook3, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bitwig-studio";
|
|
version = "3.3.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://downloads.bitwig.com/stable/${version}/${pname}-${version}.deb";
|
|
sha256 = "sha256-cF8gVPjM0KUcKOW09uFccp4/lzbUmZcBkVOwr/A/8Yw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ dpkg makeWrapper wrapGAppsHook3 ];
|
|
|
|
unpackCmd = ''
|
|
mkdir -p root
|
|
dpkg-deb -x $curSrc root
|
|
'';
|
|
|
|
dontBuild = true;
|
|
dontWrapGApps = true; # we only want $gappsWrapperArgs here
|
|
|
|
buildInputs = with xorg; [
|
|
alsa-lib cairo freetype gdk-pixbuf glib gtk3 libxcb xcbutil xcbutilwm zlib libXtst libxkbcommon pulseaudio libjack2 libX11 libglvnd libXcursor stdenv.cc.cc.lib
|
|
];
|
|
|
|
ldLibraryPath = lib.strings.makeLibraryPath buildInputs;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin
|
|
cp -r opt/bitwig-studio $out/libexec
|
|
ln -s $out/libexec/bitwig-studio $out/bin/bitwig-studio
|
|
cp -r usr/share $out/share
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = ''
|
|
# patchelf fails to set rpath on BitwigStudioEngine, so we use
|
|
# the LD_LIBRARY_PATH way
|
|
|
|
find $out -type f -executable \
|
|
-not -name '*.so.*' \
|
|
-not -name '*.so' \
|
|
-not -name '*.jar' \
|
|
-not -path '*/resources/*' | \
|
|
while IFS= read -r f ; do
|
|
patchelf --set-interpreter "${stdenv.cc.bintools.dynamicLinker}" $f
|
|
wrapProgram $f \
|
|
"''${gappsWrapperArgs[@]}" \
|
|
--prefix LD_LIBRARY_PATH : "${ldLibraryPath}" \
|
|
--prefix PATH : "${lib.makeBinPath [ ffmpeg ]}" \
|
|
--suffix PATH : "${lib.makeBinPath [ xdg-utils ]}"
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "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.
|
|
'';
|
|
homepage = "https://www.bitwig.com/";
|
|
license = licenses.unfree;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ bfortz michalrus mrVanDalo ];
|
|
};
|
|
}
|