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

33 lines
875 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchurl, unzip, puredata }:
stdenv.mkDerivation rec {
pname = "puremapping";
2016-07-17 17:08:07 +00:00
version = "20160130";
src = fetchurl {
url = "https://www.chnry.net/data/puremapping-${version}-generic.zip";
name = "puremapping";
2016-07-17 17:08:07 +00:00
sha256 = "1h7qgqd8srrxw2y1rkdw5js4k6f5vc8x6nlm2mq9mq9vjck7n1j7";
};
nativeBuildInputs = [ unzip ];
buildInputs = [ puredata ];
unpackPhase = ''
unzip $src
'';
installPhase = ''
mkdir -p $out/puremapping
mv puremapping/ $out
'';
meta = {
2015-03-16 18:34:36 +00:00
description = "Set of externals to facilitate the use of sensors within Pure Data and to create complex relations between input and output of a dynamic system";
homepage = "http://www.chnry.net/ch/?090-Pure-Mapping&lang=en";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl1;
maintainers = [ lib.maintainers.magnetophon ];
platforms = lib.platforms.linux;
};
}