nixpkgs/pkgs/by-name/cy/cyclone/package.nix

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

34 lines
870 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchFromGitHub, puredata }:
stdenv.mkDerivation rec {
pname = "cyclone";
2023-09-13 09:34:51 +00:00
version = "unstable-2023-09-12";
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";
hash = "sha256-ixfnmeoRzV0qEOOIxCV1361t3d59fwxjHWhz9uXQ2ps=";
};
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; {
2015-03-16 18:34:36 +00:00
description = "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 = with maintainers; [ magnetophon carlthome ];
2023-08-13 20:57:32 +00:00
platforms = platforms.linux;
};
}