diff --git a/pkgs/all-packages.nix b/pkgs/all-packages.nix index 21840a2..f99127a 100644 --- a/pkgs/all-packages.nix +++ b/pkgs/all-packages.nix @@ -1,3 +1,4 @@ self: pkgs: with pkgs; { + cryptominisat = callPackage ./cryptominisat.nix { }; } diff --git a/cryptominisat.nix b/pkgs/cryptominisat.nix similarity index 87% rename from cryptominisat.nix rename to pkgs/cryptominisat.nix index 571f8a2..267fa3b 100644 --- a/cryptominisat.nix +++ b/pkgs/cryptominisat.nix @@ -1,11 +1,11 @@ -with import {}; +{ stdenv, fetchurl, cmake, zlib, sqlite, boost, python27, vim }: stdenv.mkDerivation { name = "cryptominisat-4.5.3"; src = fetchurl { url = https://github.com/msoos/cryptominisat/archive/4.5.3.tar.gz; - sha256 = "0k7blcphchn7pbandbar45zp2i3xrgcayiysv9lc6kbk4l7a4k8i"; + sha256 = "0k7blcphchn7pbandbar45zp2i3xrgcayiysv9lc6kbk4l7a4k8i"; }; buildInputs = [