mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
52 lines
817 B
Nix
52 lines
817 B
Nix
{ stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
bison,
|
|
fftw,
|
|
libtool,
|
|
libjack2,
|
|
bluez,
|
|
udev,
|
|
wget,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "pd-l2ork";
|
|
version = "20241224";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pd-l2ork";
|
|
repo = "pd-l2ork";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-A+ETptD1R+Pb4r2qgD0YxV7KYeAb9iLBwENhYQyjBc4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
libtool
|
|
];
|
|
|
|
buildInputs = [
|
|
bison
|
|
fftw
|
|
libjack2
|
|
bluez
|
|
udev
|
|
wget
|
|
];
|
|
|
|
preBuild = ''
|
|
patchShebangs l2ork_addons/*.sh
|
|
'';
|
|
|
|
buildFlags = [
|
|
"prefix=${placeholder "out"}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://l2ork.music.vt.edu/";
|
|
description = "Pure Data flavor based on Purr Data";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
})
|