f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
32 lines
688 B
Nix
32 lines
688 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "uarmsolver";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "firefly-cpp";
|
|
repo = "uARMSolver";
|
|
rev = version;
|
|
sha256 = "sha256-IMlh6Y5iVouMZatR1uxw0gUNZBdh2qm56s+GEjcr1+M=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|