mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
genann: init at 1.0.0
This commit is contained in:
parent
9f6ecdcffa
commit
5d6c093b89
34
pkgs/development/libraries/genann/default.nix
Normal file
34
pkgs/development/libraries/genann/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "genann";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "codeplea";
|
||||
repo = "genann";
|
||||
rev = "v${version}";
|
||||
sha256 = "0z45ndpd4a64i6jayr4yxfcr5h87bsmhm7lfgnbp35pnfywiclmq";
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
doCheck = true;
|
||||
|
||||
# Nix doesn't seem to recognize this by default.
|
||||
checkPhase = ''
|
||||
make check
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/include
|
||||
cp ./genann.{h,c} $out/include
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/codeplea/genann";
|
||||
description = "Simple neural network library in ANSI C";
|
||||
license = licenses.zlib;
|
||||
maintainers = [ maintainers.ivar ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -1182,6 +1182,8 @@ in
|
||||
|
||||
fxlinuxprintutil = callPackage ../tools/misc/fxlinuxprintutil { };
|
||||
|
||||
genann = callPackage ../development/libraries/genann { };
|
||||
|
||||
genpass = callPackage ../tools/security/genpass {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user