3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/ocenaudio/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.1 KiB
Nix
Raw Normal View History

2020-10-06 14:16:25 +01:00
{ stdenv
, lib
, fetchurl
, autoPatchelfHook
, dpkg
, qt5
, libjack2
, alsa-lib
2020-10-06 14:16:25 +01:00
, bzip2
, libpulseaudio }:
stdenv.mkDerivation rec {
pname = "ocenaudio";
2022-09-23 01:19:10 +01:00
version = "3.11.15";
2020-10-06 14:16:25 +01:00
src = fetchurl {
url = "https://www.ocenaudio.com/downloads/index.php/ocenaudio_debian9_64.deb?version=${version}";
2022-09-23 01:19:10 +01:00
sha256 = "sha256-l3Fv0gKKGYrbxpGHH6MXflK5fCrGoq3Qu+XkqFqMJJk=";
2020-10-06 14:16:25 +01:00
};
nativeBuildInputs = [
autoPatchelfHook
qt5.qtbase
2021-04-16 23:37:08 +01:00
qt5.wrapQtAppsHook
2020-10-06 14:16:25 +01:00
libjack2
libpulseaudio
bzip2
alsa-lib
2020-10-06 14:16:25 +01:00
];
buildInputs = [ dpkg ];
dontUnpack = true;
dontBuild = true;
dontStrip = true;
installPhase = ''
mkdir -p $out
dpkg -x $src $out
cp -av $out/opt/ocenaudio/* $out
rm -rf $out/opt
# Create symlink bzip2 library
2022-03-18 16:19:56 +00:00
ln -s ${bzip2.out}/lib/libbz2.so.1 $out/lib/libbz2.so.1.0
2020-10-06 14:16:25 +01:00
'';
meta = with lib; {
2020-10-06 14:16:25 +01:00
description = "Cross-platform, easy to use, fast and functional audio editor";
homepage = "https://www.ocenaudio.com";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
2020-10-06 14:16:25 +01:00
license = licenses.unfree;
platforms = platforms.linux;
maintainers = with maintainers; [ onny ];
};
}