summary refs log tree commit diff
path: root/pkgs/applications/science/logic/minisat/unstable.nix
blob: ef46c694acb7463696322e585067dca71cd3a0ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchFromGitHub, zlib, cmake }:

stdenv.mkDerivation {
  name = "minisat-unstable-2013-09-25";

  src = fetchFromGitHub {
    owner = "niklasso";
    repo = "minisat";
    rev = "37dc6c67e2af26379d88ce349eb9c4c6160e8543";
    sha256 = "091hf3qkm197s5r7xcr3m07xsdwyz2rqk1hc9kj0hn13imz09irq";
  };

  buildInputs = [ zlib ];
  nativeBuildInputs =  [ cmake ];

  meta = with stdenv.lib; {
    description = "Compact and readable SAT solver";
    maintainers = with maintainers; [ mic92 ];
    platforms = platforms.unix;
    license = licenses.mit;
    homepage = http://minisat.se/;
  };
}