about summary refs log tree commit diff
path: root/pkgs/applications/science/logic/minisat/unstable.nix
blob: f7f5c7a4b78d04ea51df3bfe4d84a5641e5ae09a (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 rec {
  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/";
  };
}