nixpkgs/pkgs/development/tools/biodiff/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
697 B
Nix
Raw Normal View History

2022-03-06 01:41:57 +03:00
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "biodiff";
2023-01-31 19:28:09 +03:00
version = "1.0.4";
2022-03-06 01:41:57 +03:00
src = fetchFromGitHub {
owner = "8051Enthusiast";
repo = "biodiff";
rev = "v${version}";
2023-01-31 19:28:09 +03:00
sha256 = "sha256-anGiqTiZVm6q8BII1Ahg2ph7OwX5isCa16orEcf4aFE=";
2022-03-06 01:41:57 +03:00
};
2023-01-31 19:28:09 +03:00
cargoSha256 = "sha256-uyATu6M04IRFtzFb2ox0xUYFXjkW+t+71Iy58TuqCko=";
2022-03-06 01:41:57 +03:00
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 ];
};
}