ocamlPackages.unisim_archisec: init at 0.0.5
This commit is contained in:
parent
e201ba4fbc
commit
dae32f5930
3 changed files with 29 additions and 0 deletions
|
@ -3522,6 +3522,12 @@
|
|||
githubId = 10701143;
|
||||
name = "David Crompton";
|
||||
};
|
||||
david-hamelin = {
|
||||
email = "david.hamelin@outlook.fr";
|
||||
github = "HamelinDavid";
|
||||
githubId = 118536343;
|
||||
name = "David Hamelin";
|
||||
};
|
||||
davidrusu = {
|
||||
email = "davidrusu.me@gmail.com";
|
||||
github = "davidrusu";
|
||||
|
|
21
pkgs/development/ocaml-modules/unisim_archisec/default.nix
Normal file
21
pkgs/development/ocaml-modules/unisim_archisec/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -1628,6 +1628,8 @@ let
|
|||
|
||||
unionFind = callPackage ../development/ocaml-modules/unionFind { };
|
||||
|
||||
unisim_archisec = callPackage ../development/ocaml-modules/unisim_archisec { };
|
||||
|
||||
unix-errno = callPackage ../development/ocaml-modules/unix-errno { };
|
||||
|
||||
unstrctrd = callPackage ../development/ocaml-modules/unstrctrd { };
|
||||
|
|
Loading…
Reference in a new issue