4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
55 lines
1.0 KiB
Nix
55 lines
1.0 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, autoPatchelfHook
|
|
, dpkg
|
|
, qt5
|
|
, libjack2
|
|
, alsaLib
|
|
, bzip2
|
|
, libpulseaudio }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ocenaudio";
|
|
version = "3.9.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.ocenaudio.com/downloads/index.php/ocenaudio_debian9_64.deb?version=${version}";
|
|
sha256 = "07r49133kk99ya4grwby3admy892mkk9cfxz3wh0v81aznhpw4jg";
|
|
};
|
|
|
|
|
|
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 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 ];
|
|
};
|
|
}
|