lol

cryptominisat: 5.7.1 -> 5.8.0 (#92681)

Co-authored-by: Jörg Thalheim <joerg@thalheim.io>

authored by

Jörg Thalheim
Jörg Thalheim
and committed by
GitHub
141f9ce8 26d250d4

+11 -3
+11 -3
pkgs/applications/science/logic/cryptominisat/default.nix
··· 1 - { stdenv, fetchFromGitHub, cmake, python3, xxd, boost }: 1 + { stdenv, fetchFromGitHub, cmake, python3, xxd, boost, fetchpatch }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "cryptominisat"; 5 - version = "5.7.1"; 5 + version = "5.8.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "msoos"; 9 9 repo = "cryptominisat"; 10 10 rev = version; 11 - sha256 = "16lydnbd4rxfyabvvw7l4hbbby3yprcqqzrydd3n8rjbxibi4xyf"; 11 + sha256 = "00hmxdlyhn7pwk9jlvc5g0l5z5xqfchjzf5jgn3pkj9xhl8yqq50"; 12 12 }; 13 + 14 + patches = [ 15 + (fetchpatch { 16 + # https://github.com/msoos/cryptominisat/pull/621 17 + url = "https://github.com/msoos/cryptominisat/commit/11a97003b0bfbfb61ed6c4e640212110d390c28c.patch"; 18 + sha256 = "0hdy345bwcbxz0jl1jdxfa6mmfh77s2pz9rnncsr0jzk11b3j0cw"; 19 + }) 20 + ]; 13 21 14 22 buildInputs = [ python3 boost ]; 15 23 nativeBuildInputs = [ cmake xxd ];