Merge pull request #106123 from IvarWithoutBones/init-genann-1.0

genann: init at 1.0.0
This commit is contained in:
Sandro 2020-12-07 17:28:55 +01:00 committed by GitHub
commit 09f724249c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 0 deletions

View 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;
};
}

View file

@ -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;
};