Merge pull request #162936 from newAM/biodiff

biodiff: init at 1.0.1
This commit is contained in:
Fabian Affolter 2022-03-06 18:20:07 +01:00 committed by GitHub
commit 692d556bae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "biodiff";
version = "1.0.1";
src = fetchFromGitHub {
owner = "8051Enthusiast";
repo = "biodiff";
rev = "v${version}";
sha256 = "sha256-M1hwuIe5+quxcvFAacBkxQMiQyN6lhtWA6hEi5Buoho=";
};
cargoSha256 = "sha256-NIt4D2/T7Zl7rgksbQeVo6cNBt6cZkUGTJGztnp6SB0=";
meta = with lib; {
description = "Hex diff viewer using alignment algorithms from biology";
homepage = "https://github.com/8051Enthusiast/biodiff";
changelog = "https://github.com/8051Enthusiast/biodiff/blob/v${version}/CHANGELOG";
license = licenses.mit;
maintainers = with maintainers; [ newam ];
};
}

View File

@ -4419,6 +4419,8 @@ with pkgs;
brotli = callPackage ../tools/compression/brotli { };
biodiff = callPackage ../development/tools/biodiff { };
biosdevname = callPackage ../tools/networking/biosdevname { };
bluetooth_battery = python3Packages.callPackage ../applications/misc/bluetooth_battery { };