cryptominisat: use new xxd package instead of vim

+8 -9
+8 -9
pkgs/applications/science/logic/cryptominisat/default.nix
··· 1 - { stdenv, fetchFromGitHub, fetchpatch, cmake, python, vim }: 1 + { stdenv, fetchFromGitHub, fetchpatch, cmake, python, xxd }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "cryptominisat-${version}"; 5 5 version = "5.0.1"; 6 6 7 7 src = fetchFromGitHub { 8 - owner = "msoos"; 9 - repo = "cryptominisat"; 10 - rev = version; 8 + owner = "msoos"; 9 + repo = "cryptominisat"; 10 + rev = version; 11 11 sha256 = "0cpw5d9vplxvv3aaplhnga55gz1hy29p7s4pkw1306knkbhlzvkb"; 12 12 }; 13 13 14 - # vim for xxd binary 15 - buildInputs = [ python vim ]; 14 + buildInputs = [ python xxd ]; 16 15 nativeBuildInputs = [ cmake ]; 17 16 18 17 patches = [(fetchpatch rec { ··· 23 22 24 23 meta = with stdenv.lib; { 25 24 description = "An advanced SAT Solver"; 25 + homepage = https://github.com/msoos/cryptominisat; 26 + license = licenses.mit; 26 27 maintainers = with maintainers; [ mic92 ]; 27 - platforms = platforms.unix; 28 - license = licenses.mit; 29 - homepage = https://github.com/msoos/cryptominisat; 28 + platforms = platforms.unix; 30 29 }; 31 30 }