f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
21 lines
586 B
Nix
21 lines
586 B
Nix
{ lib, buildDunePackage, fetchurl }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "unisim_archisec";
|
|
version = "0.0.8";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/binsec/unisim_archisec/releases/download/0.0.8/unisim_archisec-0.0.8.tbz";
|
|
sha256 = "sha256-D8DumHaQnLsMaVHoUL7w8KgGRTh9Rk+22NNSa0a/qII=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|