mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
22 lines
586 B
Nix
22 lines
586 B
Nix
{ lib, buildDunePackage, fetchurl }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "unisim_archisec";
|
|
version = "0.0.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/binsec/unisim_archisec/releases/download/0.0.5/unisim_archisec-0.0.5.tbz";
|
|
sha256 = "sha256-94Ky7rtR8oFTtWshTYaY6gyJdqrY3QKMF7qTkZQweXQ=";
|
|
};
|
|
|
|
duneVersion = "3";
|
|
|
|
meta = {
|
|
homepage = "https://binsec.github.io";
|
|
downloadPage = "https://github.com/binsec/unisim_archisec";
|
|
description = "UNISIM-VP DBA decoder";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ lib.maintainers.david-hamelin ];
|
|
};
|
|
}
|