52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{ stdenv, lib
|
|
, fetchurl
|
|
, autoPatchelfHook
|
|
, alsaLib
|
|
, freetype
|
|
, glibc
|
|
, requireFile
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "decentsampler-${version}";
|
|
|
|
version = "1.3.6";
|
|
|
|
src = requireFile rec {
|
|
name = "Decent_Sampler-${version}-Linux-x86_64.tar.gz";
|
|
sha256 = "15vpv4haqq78g1lws71d32cdqll3r0dwzsbhrq9lky8yd8sg9sbw";
|
|
message = ''
|
|
Get ${name}, (linux version) from
|
|
https://www.decentsamples.com/product/decent-sampler-plugin/
|
|
|
|
And import it using:
|
|
nix-prefetch-url file://<path/to>/${name}
|
|
'';
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
];
|
|
|
|
buildInputs = [
|
|
alsaLib
|
|
freetype
|
|
glibc
|
|
];
|
|
|
|
sourceRoot = ".";
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/lib/vst $out/lib/vst3
|
|
install -m755 -D Decent_Sampler-${version}-Linux-x86_64/DecentSampler.so \
|
|
$out/lib/vst/
|
|
cp -r Decent_Sampler-${version}-Linux-x86_64/DecentSampler.vst3 $out/lib/vst3/
|
|
chmod -R 0755 $out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.decentsamples.com/product/decent-sampler-plugin/";
|
|
description = "A FREE sampling plugin that allows you to play samples in the Decent Sampler format";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|