nixpkgs/pkgs/applications/audio/pd-plugins/cyclone/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
856 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchFromGitHub, puredata }:
stdenv.mkDerivation rec {
pname = "cyclone";
2023-08-12 13:03:35 +00:00
version = "0.7-0";
2017-12-07 12:41:25 +00:00
src = fetchFromGitHub {
owner = "porres";
repo = "pd-cyclone";
2023-08-12 13:03:35 +00:00
rev = "cyclone_${version}";
sha256 = "C+zs+xNyv6bV1LIZT2E7Yg0fyHADcHze3VpmmW/YJWg=";
};
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
'';
2023-08-12 13:03:35 +00:00
meta = with lib; {
2023-08-13 20:57:32 +00:00
broken = true;
2015-03-16 18:34:36 +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-08-12 13:03:35 +00:00
license = licenses.tcltk;
maintainers = [ maintainers.magnetophon maintainers.carlthome ];
2023-08-13 20:57:32 +00:00
platforms = platforms.linux;
};
}