2021-01-15 13:21:58 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, puredata }:
|
2015-03-16 14:39:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "cyclone";
|
2023-09-13 09:34:51 +00:00
|
|
|
version = "unstable-2023-09-12";
|
2015-03-16 14:39:52 +00:00
|
|
|
|
2017-12-07 12:41:25 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "porres";
|
|
|
|
repo = "pd-cyclone";
|
2023-09-13 09:34:51 +00:00
|
|
|
rev = "7c470fb03db66057a2198843b635ac3f1abde84d";
|
2023-10-14 20:56:34 +00:00
|
|
|
hash = "sha256-ixfnmeoRzV0qEOOIxCV1361t3d59fwxjHWhz9uXQ2ps=";
|
2015-03-16 14:39:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ puredata ];
|
|
|
|
|
2017-12-07 12:41:25 +00:00
|
|
|
makeFlags = [
|
|
|
|
"pdincludepath=${puredata}/include/pd"
|
|
|
|
"prefix=$(out)"
|
|
|
|
];
|
2016-02-09 01:26:02 +00:00
|
|
|
|
2017-12-07 12:41:25 +00:00
|
|
|
postInstall = ''
|
|
|
|
mv "$out/lib/pd-externals/cyclone" "$out/"
|
|
|
|
rm -rf $out/lib
|
2015-03-16 14:39:52 +00:00
|
|
|
'';
|
|
|
|
|
2023-08-12 13:03:35 +00:00
|
|
|
meta = with lib; {
|
2015-03-16 18:34:36 +00:00
|
|
|
description = "Library of PureData classes, bringing some level of compatibility between Max/MSP and Pd environments";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://puredata.info/downloads/cyclone";
|
2023-08-12 13:03:35 +00:00
|
|
|
license = licenses.tcltk;
|
2023-10-14 20:56:34 +00:00
|
|
|
maintainers = with maintainers; [ magnetophon carlthome ];
|
2023-08-13 20:57:32 +00:00
|
|
|
platforms = platforms.linux;
|
2015-03-16 14:39:52 +00:00
|
|
|
};
|
|
|
|
}
|