mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
iSpike: init at 2.1.1
This commit is contained in:
parent
c0a5872c2c
commit
9ec9da1a24
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchurl, cmake, boost
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ispike-${version}";
|
||||
version = "2.1.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/ispike/${name}.tar.gz";
|
||||
sha256 = "0khrxp43bi5kisr8j4lp9fl4r5marzf7b4inys62ac108sfb28lp";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake boost ];
|
||||
|
||||
meta = {
|
||||
description = "Spiking neural interface between iCub and a spiking neural simulator";
|
||||
homepage = https://sourceforge.net/projects/ispike/;
|
||||
license = stdenv.lib.licenses.lgpl3;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.nico202 ];
|
||||
};
|
||||
|
||||
|
||||
}
|
@ -2017,6 +2017,8 @@ in
|
||||
isl_0_14 = callPackage ../development/libraries/isl/0.14.1.nix { };
|
||||
isl_0_15 = callPackage ../development/libraries/isl/0.15.0.nix { };
|
||||
|
||||
ispike = callPackage ../development/libraries/science/robotics/ispike { };
|
||||
|
||||
isync = callPackage ../tools/networking/isync { };
|
||||
isyncUnstable = callPackage ../tools/networking/isync/unstable.nix { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user