2023-04-29 16:46:19 +00:00
|
|
|
{ lib, buildDunePackage, fetchurl }:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "unisim_archisec";
|
2024-07-27 06:49:29 +00:00
|
|
|
version = "0.0.8";
|
2023-04-29 16:46:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-07-27 06:49:29 +00:00
|
|
|
url = "https://github.com/binsec/unisim_archisec/releases/download/0.0.8/unisim_archisec-0.0.8.tbz";
|
|
|
|
sha256 = "sha256-D8DumHaQnLsMaVHoUL7w8KgGRTh9Rk+22NNSa0a/qII=";
|
2023-04-29 16:46:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|