{ lib , stdenv , fetchFromGitHub , cmake , python3 , boost }: stdenv.mkDerivation rec { pname = "cryptominisat"; version = "5.11.11"; src = fetchFromGitHub { owner = "msoos"; repo = "cryptominisat"; rev = version; hash = "sha256-TYuOgOOs1EsdNz7ctZMsArTlw3QzHjiPZVozuniiPcI="; }; buildInputs = [ python3 boost ]; nativeBuildInputs = [ cmake ]; meta = with lib; { description = "An advanced SAT Solver"; homepage = "https://github.com/msoos/cryptominisat"; license = licenses.mit; maintainers = with maintainers; [ mic92 ]; platforms = platforms.unix; }; }