Commit 2cba7337 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt
Browse files

autodock-vina: 1.2.6 -> 1.2.7

parent ab21c690
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -12,13 +12,13 @@ let
in
stdenv.mkDerivation (finalAttrs: {
  pname = "autodock-vina";
  version = "1.2.6";
  version = "1.2.7";

  src = fetchFromGitHub {
    owner = "ccsb-scripps";
    repo = "autodock-vina";
    tag = "v${finalAttrs.version}";
    hash = "sha256-Y0whqBecZt5D/5HEfL005rCq4lAJTr2mUxy5rygCEtc=";
    hash = "sha256-AQJl/EUAkdIQJZSN27sbjG7dYbQxeEb8Pd+p2kKRnvA=";
  };

  sourceRoot = "${finalAttrs.src.name}/build/${
@@ -47,6 +47,8 @@ stdenv.mkDerivation (finalAttrs: {
    runHook postInstall
  '';

  passthru.boost = boost';

  meta = with lib; {
    description = "One of the fastest and most widely used open-source docking engines";
    homepage = "https://vina.scripps.edu/";
+4 −1
Original line number Diff line number Diff line
@@ -2,12 +2,15 @@
  lib,
  buildPythonPackage,
  autodock-vina,
  boost,
  swig,
  setuptools,
  numpy,
}:

let
  inherit (autodock-vina) boost;
in

buildPythonPackage {
  inherit (autodock-vina)
    pname