lol
1{ stdenv, fetchurl, unzip, puredata }:
2
3stdenv.mkDerivation rec {
4 name = "puremapping-1.01";
5
6 src = fetchurl {
7 url = "http://www.chnry.net/ch/IMG/zip/puremapping-libdir-generic.zip";
8 name = "puremapping";
9 sha256 = "1ygzxsfj3rnzjkpmgi4wch810q8s5vm1gdam6a938hbbvamafgvc";
10 };
11
12 buildInputs = [ unzip puredata ];
13
14 unpackPhase = ''
15 unzip $src
16 '';
17
18 installPhase = ''
19 mkdir -p $out/puremapping
20 mv puremapping/ $out
21 '';
22
23 meta = {
24 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";
25 homepage = http://www.chnry.net/ch/?090-Pure-Mapping&lang=en;
26 license = stdenv.lib.licenses.gpl1;
27 maintainers = [ stdenv.lib.maintainers.magnetophon ];
28 platforms = stdenv.lib.platforms.linux;
29 };
30}