major refactor and reorg
This commit is contained in:
parent
f99d2c3145
commit
4da9b4919e
11 changed files with 5 additions and 59 deletions
|
@ -20,12 +20,10 @@
|
||||||
]
|
]
|
||||||
|
|
||||||
(with nix-config.packages.x86_64-linux; [
|
(with nix-config.packages.x86_64-linux; [
|
||||||
# bitwig-beta
|
mioctl
|
||||||
mioctl.mioctl
|
|
||||||
tal.bassline
|
tal.bassline
|
||||||
tal.j8
|
tal.j8
|
||||||
tal.u-no-lx
|
tal.u-no-lx
|
||||||
amplocker.amplocker
|
|
||||||
chair-audio.snare
|
chair-audio.snare
|
||||||
chair-audio.cymb
|
chair-audio.cymb
|
||||||
the-usual-suspects.vavra
|
the-usual-suspects.vavra
|
||||||
|
@ -39,6 +37,8 @@
|
||||||
guix
|
guix
|
||||||
thonny
|
thonny
|
||||||
|
|
||||||
|
bitwig-studio
|
||||||
|
|
||||||
wayback
|
wayback
|
||||||
just
|
just
|
||||||
yt-dlp
|
yt-dlp
|
||||||
|
@ -301,8 +301,6 @@
|
||||||
handbrake
|
handbrake
|
||||||
renoise
|
renoise
|
||||||
krita
|
krita
|
||||||
darling
|
|
||||||
darling-dmg
|
|
||||||
rawtherapee
|
rawtherapee
|
||||||
inkscape
|
inkscape
|
||||||
gimp
|
gimp
|
||||||
|
@ -611,7 +609,7 @@
|
||||||
firefox.enable = true;
|
firefox.enable = true;
|
||||||
rbw = {
|
rbw = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = nix-config.packages.x86_64-linux.rbw.rbw;
|
package = nix-config.packages.x86_64-linux.rbw-latest;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -18,8 +18,7 @@
|
||||||
};
|
};
|
||||||
overlays = builtins.attrValues nix-config.overlays
|
overlays = builtins.attrValues nix-config.overlays
|
||||||
++ [ inputs.emacs-overlay.overlays.default
|
++ [ inputs.emacs-overlay.overlays.default
|
||||||
inputs.niri.overlays.default
|
inputs.niri.overlays.default ];
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# environment.etc."nix/inputs/nixpkgs".source = "${nixpkgs}";
|
# environment.etc."nix/inputs/nixpkgs".source = "${nixpkgs}";
|
||||||
|
|
|
@ -1,51 +0,0 @@
|
||||||
{ stdenv, pkgs, fetchurl, lib, unzip, autoPatchelfHook, makeWrapper, ... }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
pname = "amplocker";
|
|
||||||
version = "latest";
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://audioassaultdownloads.s3.amazonaws.com/AmpLocker/AmpLocker109/AmpLockerLinux.zip";
|
|
||||||
sha256 = "sha256-p4mmq/g0bA2d1ophcbXf/Tn2n0tkXzAKoLWUMe95RhU=";
|
|
||||||
};
|
|
||||||
nativeBuildInputs = [ makeWrapper unzip autoPatchelfHook ];
|
|
||||||
buildInputs = with pkgs; [
|
|
||||||
freetype
|
|
||||||
fontconfig
|
|
||||||
alsa-lib
|
|
||||||
pipewire
|
|
||||||
curl
|
|
||||||
stdenv.cc.cc.lib
|
|
||||||
];
|
|
||||||
|
|
||||||
unpackPhase = ''
|
|
||||||
unzip $src
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -p $out/lib/vst3 $out/
|
|
||||||
mv "Amp Locker.vst3/Contents/x86_64-linux/Amp Locker.so" "Amp Locker.vst3/Contents/x86_64-linux/AmpLocker.so"
|
|
||||||
cp -r "Amp Locker.vst3" $out/lib/vst3/AmpLocker.vst3
|
|
||||||
'';
|
|
||||||
|
|
||||||
NIX_LDFLAGS = (toString [
|
|
||||||
"-lX11"
|
|
||||||
"-lXext"
|
|
||||||
"-lXcursor"
|
|
||||||
"-lXinerama"
|
|
||||||
"-lXrandr"
|
|
||||||
]);
|
|
||||||
|
|
||||||
postFixup = ''
|
|
||||||
for file in \
|
|
||||||
$out/lib/vst3/AmpLocker.vst3/Contents/x86_64-linux/AmpLocker.so
|
|
||||||
do
|
|
||||||
patchelf --set-rpath "${lib.makeLibraryPath buildInputs}" $file
|
|
||||||
done
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
homepage = "https://audioassault.mx/getamplocker#Get_Amp_Locker";
|
|
||||||
description = "Amp Locker";
|
|
||||||
platforms = platforms.linux;
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue