uarmsolver: init at 0.2.4 (#188274)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
main
Iztok Fister Jr 2 years ago committed by GitHub
parent b9b0d8af62
commit af482381f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      maintainers/maintainer-list.nix
  2. 31
      pkgs/applications/science/machine-learning/uarmsolver/default.nix
  3. 2
      pkgs/top-level/all-packages.nix

@ -4340,6 +4340,12 @@
githubId = 415760;
name = "Jonas Höglund";
};
firefly-cpp = {
email = "iztok@iztok-jr-fister.eu";
github = "firefly-cpp";
githubId = 1633361;
name = "Iztok Fister Jr.";
};
fishi0x01 = {
email = "fishi0x01@gmail.com";
github = "fishi0x01";

@ -0,0 +1,31 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "uarmsolver";
version = "0.2.4";
src = fetchFromGitHub {
owner = "firefly-cpp";
repo = "uARMSolver";
rev = version;
sha256 = "17px69z0kw0z6cip41c45i6srbw56b0md92i9vbqyzinx8b75mzw";
};
nativeBuildInputs = [ cmake ];
installPhase = ''
install -D -t $out/bin uARMSolver
'';
meta = with lib; {
description = "universal Association Rule Mining Solver";
homepage = "https://github.com/firefly-cpp/uARMSolver";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ firefly-cpp ];
};
}

@ -34236,6 +34236,8 @@ with pkgs;
sc2-headless = callPackage ../applications/science/machine-learning/sc2-headless { };
uarmsolver = callPackage ../applications/science/machine-learning/uarmsolver { };
### SCIENCE/MATH
_4ti2 = callPackage ../applications/science/math/4ti2 { };

Loading…
Cancel
Save