b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
31 lines
657 B
Nix
31 lines
657 B
Nix
{ 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 ];
|
|
};
|
|
}
|