2021-01-15 13:21:58 +00:00
|
|
|
{ lib, stdenv, fetchurl, unzip, puredata }:
|
2015-03-16 14:39:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "puremapping";
|
2016-07-17 18:08:07 +01:00
|
|
|
version = "20160130";
|
2015-03-16 14:39:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.chnry.net/data/puremapping-${version}-generic.zip";
|
2015-03-16 14:39:52 +00:00
|
|
|
name = "puremapping";
|
2016-07-17 18:08:07 +01:00
|
|
|
sha256 = "1h7qgqd8srrxw2y1rkdw5js4k6f5vc8x6nlm2mq9mq9vjck7n1j7";
|
2015-03-16 14:39:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ unzip 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";
|
2020-04-01 02:11:51 +01:00
|
|
|
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;
|
2015-03-16 14:39:52 +00:00
|
|
|
};
|
|
|
|
}
|