about summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2023-12-31 14:50:52 +0100
committerGitHub <noreply@github.com>2023-12-31 14:50:52 +0100
commit9e5f798011ddc44897b9b33f72a04614e9fd89f2 (patch)
treedd7e994bc228a987dfcaf1eafee250693ac4f9b8 /pkgs/applications/audio
parentd9a7646f9fd5d1c0785db7c74e0e29cb29bb6e4f (diff)
parentcbebe20369066f66d88473da8116e9e71b65ce06 (diff)
Merge pull request #277547 from onny/ocenaudio-update
ocenaudio: 3.13.2 -> 3.13.3
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/ocenaudio/default.nix55
1 files changed, 0 insertions, 55 deletions
diff --git a/pkgs/applications/audio/ocenaudio/default.nix b/pkgs/applications/audio/ocenaudio/default.nix
deleted file mode 100644
index daafc48deb7a1..0000000000000
--- a/pkgs/applications/audio/ocenaudio/default.nix
+++ /dev/null
@@ -1,55 +0,0 @@
-{ stdenv
-, lib
-, fetchurl
-, autoPatchelfHook
-, dpkg
-, qt5
-, libjack2
-, alsa-lib
-, bzip2
-, libpulseaudio }:
-
-stdenv.mkDerivation rec {
-  pname = "ocenaudio";
-  version = "3.13.2";
-
-  src = fetchurl {
-    url = "https://www.ocenaudio.com/downloads/index.php/ocenaudio_debian9_64.deb?version=${version}";
-    sha256 = "sha256-ITlnOrreZHTH8NDjx/hQzEV3toAwaM2bWFLqMf3btNE=";
-  };
-
-  nativeBuildInputs = [
-    autoPatchelfHook
-    qt5.qtbase
-    qt5.wrapQtAppsHook
-    libjack2
-    libpulseaudio
-    bzip2
-    alsa-lib
-  ];
-
-  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
-    ln -s ${bzip2.out}/lib/libbz2.so.1 $out/lib/libbz2.so.1.0
-  '';
-
-  meta = with lib; {
-    description = "Cross-platform, easy to use, fast and functional audio editor";
-    homepage = "https://www.ocenaudio.com";
-    sourceProvenance = with sourceTypes; [ binaryNativeCode ];
-    license = licenses.unfree;
-    platforms = [ "x86_64-linux" ];
-    maintainers = with maintainers; [ onny ];
-  };
-}