2021-01-17 00:15:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, puredata }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "cyclone";
|
2023-10-19 13:55:26 +00:00
|
|
|
version = "unstable-2023-09-12";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "porres";
|
|
|
|
repo = "pd-cyclone";
|
2023-10-19 13:55:26 +00:00
|
|
|
rev = "7c470fb03db66057a2198843b635ac3f1abde84d";
|
|
|
|
hash = "sha256-ixfnmeoRzV0qEOOIxCV1361t3d59fwxjHWhz9uXQ2ps=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ puredata ];
|
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"pdincludepath=${puredata}/include/pd"
|
|
|
|
"prefix=$(out)"
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mv "$out/lib/pd-externals/cyclone" "$out/"
|
|
|
|
rm -rf $out/lib
|
|
|
|
'';
|
|
|
|
|
2023-10-19 13:55:26 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A library of PureData classes, bringing some level of compatibility between Max/MSP and Pd environments";
|
|
|
|
homepage = "http://puredata.info/downloads/cyclone";
|
2023-10-19 13:55:26 +00:00
|
|
|
license = licenses.tcltk;
|
|
|
|
maintainers = with maintainers; [ magnetophon carlthome ];
|
|
|
|
platforms = platforms.linux;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|