587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
32 lines
688 B
Nix
32 lines
688 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "uarmsolver";
|
|
version = "0.2.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "firefly-cpp";
|
|
repo = "uARMSolver";
|
|
rev = version;
|
|
sha256 = "sha256-E8hc7qoIDaNERMUhVlh+iBvQX1odzd/szeMSh8TCNFo=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
installPhase = ''
|
|
install -D -t $out/bin uARMSolver
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "universal Association Rule Mining Solver";
|
|
mainProgram = "uARMSolver";
|
|
homepage = "https://github.com/firefly-cpp/uARMSolver";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ firefly-cpp ];
|
|
};
|
|
}
|