8 stdenv.mkDerivation rec {
12 src = fetchFromGitHub {
16 hash = "sha256-/eR/B8rE+mh5zDPjx1kS9nVJf1rCeHP04QDavh6z6fM=";
19 buildInputs = [ boost ];
20 nativeBuildInputs = [ cmake ];
23 "-DSML_BUILD_BENCHMARKS=OFF"
24 "-DSML_BUILD_EXAMPLES=OFF"
25 "-DSML_BUILD_TESTS=ON"
26 "-DSML_USE_EXCEPTIONS=ON"
32 description = "Header only state machine library with no dependencies";
33 homepage = "https://github.com/boost-ext/sml";
34 license = licenses.boost;
35 maintainers = with maintainers; [ prtzl ];
36 platforms = platforms.all;