biodiff: 1.1.0 -> 1.2.1
This commit is contained in:
parent
4ca10a41c2
commit
19df82695b
1 changed files with 11 additions and 4 deletions
|
@ -1,17 +1,24 @@
|
|||
{ lib, fetchFromGitHub, rustPlatform }:
|
||||
{ lib, fetchFromGitHub, rustPlatform, wfa2-lib }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "biodiff";
|
||||
version = "1.1.0";
|
||||
version = "1.2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "8051Enthusiast";
|
||||
repo = "biodiff";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-IrIRBozW2nNqt3/643jQ9sHT/YIpYhWeG749bTR4+60=";
|
||||
hash = "sha256-ZLxjOV08sC5dKICvRUyL6FLMORkxwdLgNq7L45CDwa4=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
cargoHash = "sha256-EkvZk5l2Jw/6Ejrz4gYFWz9IZLjz0Op/1z3BGBV07dA=";
|
||||
cargoHash = "sha256-LxkwhOxXkegdXLmtbNLIB6nOAeCbpvIwSXbTF6jBcHs=";
|
||||
|
||||
buildInputs = [ wfa2-lib ];
|
||||
|
||||
# default statically links wfa2
|
||||
buildNoDefaultFeatures = true;
|
||||
buildFeatures = [ "wfa2" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Hex diff viewer using alignment algorithms from biology";
|
||||
|
|
Loading…
Reference in a new issue