tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
cryptominisat: use new xxd package instead of vim
Peter Hoeg
8 years ago
45248be2
0345aed9
+8
-9
1 changed file
expand all
collapse all
unified
split
pkgs
applications
science
logic
cryptominisat
default.nix
+8
-9
pkgs/applications/science/logic/cryptominisat/default.nix
···
1
1
-
{ stdenv, fetchFromGitHub, fetchpatch, cmake, python, vim }:
1
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
8
-
owner = "msoos";
9
9
-
repo = "cryptominisat";
10
10
-
rev = version;
8
8
+
owner = "msoos";
9
9
+
repo = "cryptominisat";
10
10
+
rev = version;
11
11
sha256 = "0cpw5d9vplxvv3aaplhnga55gz1hy29p7s4pkw1306knkbhlzvkb";
12
12
};
13
13
14
14
-
# vim for xxd binary
15
15
-
buildInputs = [ python vim ];
14
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
25
+
homepage = https://github.com/msoos/cryptominisat;
26
26
+
license = licenses.mit;
26
27
maintainers = with maintainers; [ mic92 ];
27
27
-
platforms = platforms.unix;
28
28
-
license = licenses.mit;
29
29
-
homepage = https://github.com/msoos/cryptominisat;
28
28
+
platforms = platforms.unix;
30
29
};
31
30
}