tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
iSpike: init at 2.1.1
=
9 years ago
9ec9da1a
c0a5872c
+26
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
science
robotics
ispike
default.nix
top-level
all-packages.nix
+24
pkgs/development/libraries/science/robotics/ispike/default.nix
···
1
1
+
{ stdenv, fetchurl, cmake, boost
2
2
+
}:
3
3
+
4
4
+
stdenv.mkDerivation rec {
5
5
+
name = "ispike-${version}";
6
6
+
version = "2.1.1";
7
7
+
8
8
+
src = fetchurl {
9
9
+
url = "mirror://sourceforge/ispike/${name}.tar.gz";
10
10
+
sha256 = "0khrxp43bi5kisr8j4lp9fl4r5marzf7b4inys62ac108sfb28lp";
11
11
+
};
12
12
+
13
13
+
buildInputs = [ cmake boost ];
14
14
+
15
15
+
meta = {
16
16
+
description = "Spiking neural interface between iCub and a spiking neural simulator";
17
17
+
homepage = https://sourceforge.net/projects/ispike/;
18
18
+
license = stdenv.lib.licenses.lgpl3;
19
19
+
platforms = stdenv.lib.platforms.linux;
20
20
+
maintainers = [ stdenv.lib.maintainers.nico202 ];
21
21
+
};
22
22
+
23
23
+
24
24
+
}
+2
pkgs/top-level/all-packages.nix
···
2017
2017
isl_0_14 = callPackage ../development/libraries/isl/0.14.1.nix { };
2018
2018
isl_0_15 = callPackage ../development/libraries/isl/0.15.0.nix { };
2019
2019
2020
2020
+
ispike = callPackage ../development/libraries/science/robotics/ispike { };
2021
2021
+
2020
2022
isync = callPackage ../tools/networking/isync { };
2021
2023
isyncUnstable = callPackage ../tools/networking/isync/unstable.nix { };
2022
2024