ocenaudio: init at 3.9.3
This commit is contained in:
parent
bc79f93973
commit
00d8c11a57
|
@ -6090,6 +6090,12 @@
|
||||||
githubId = 1538622;
|
githubId = 1538622;
|
||||||
name = "Michael Reilly";
|
name = "Michael Reilly";
|
||||||
};
|
};
|
||||||
|
onny = {
|
||||||
|
email = "onny@project-insanity.org";
|
||||||
|
github = "onny";
|
||||||
|
githubId = 757752;
|
||||||
|
name = "Jonas Heinrich";
|
||||||
|
};
|
||||||
OPNA2608 = {
|
OPNA2608 = {
|
||||||
email = "christoph.neidahl@gmail.com";
|
email = "christoph.neidahl@gmail.com";
|
||||||
github = "OPNA2608";
|
github = "OPNA2608";
|
||||||
|
|
|
@ -0,0 +1,54 @@
|
||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, fetchurl
|
||||||
|
, autoPatchelfHook
|
||||||
|
, dpkg
|
||||||
|
, qt5
|
||||||
|
, libjack2
|
||||||
|
, alsaLib
|
||||||
|
, bzip2
|
||||||
|
, libpulseaudio }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "ocenaudio";
|
||||||
|
version = "3.9.2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://www.ocenaudio.com/downloads/index.php/ocenaudio_debian9_64.deb?version=${version}";
|
||||||
|
sha256 = "1fvpba3dnzb7sm6gp0znbrima02ckfiy2zwb66x1gr05y9a56inv";
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
autoPatchelfHook
|
||||||
|
qt5.qtbase
|
||||||
|
libjack2
|
||||||
|
libpulseaudio
|
||||||
|
bzip2
|
||||||
|
alsaLib
|
||||||
|
];
|
||||||
|
|
||||||
|
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/libbz2.so.1.0
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Cross-platform, easy to use, fast and functional audio editor";
|
||||||
|
homepage = "https://www.ocenaudio.com";
|
||||||
|
license = licenses.unfree;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ onny ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -21527,6 +21527,8 @@ in
|
||||||
|
|
||||||
nwg-launchers = callPackage ../applications/misc/nwg-launchers { };
|
nwg-launchers = callPackage ../applications/misc/nwg-launchers { };
|
||||||
|
|
||||||
|
ocenaudio = callPackage ../applications/audio/ocenaudio { };
|
||||||
|
|
||||||
open-policy-agent = callPackage ../development/tools/open-policy-agent { };
|
open-policy-agent = callPackage ../development/tools/open-policy-agent { };
|
||||||
|
|
||||||
openshift = callPackage ../applications/networking/cluster/openshift { };
|
openshift = callPackage ../applications/networking/cluster/openshift { };
|
||||||
|
|
Loading…
Reference in New Issue