lol

ocamlPackages.unisim_archisec: init at 0.0.5

authored by

David Hamelin and committed by
Vincent Laporte
dae32f59 e201ba4f

+29
+6
maintainers/maintainer-list.nix
··· 3522 3522 githubId = 10701143; 3523 3523 name = "David Crompton"; 3524 3524 }; 3525 + david-hamelin = { 3526 + email = "david.hamelin@outlook.fr"; 3527 + github = "HamelinDavid"; 3528 + githubId = 118536343; 3529 + name = "David Hamelin"; 3530 + }; 3525 3531 davidrusu = { 3526 3532 email = "davidrusu.me@gmail.com"; 3527 3533 github = "davidrusu";
+21
pkgs/development/ocaml-modules/unisim_archisec/default.nix
··· 1 + { lib, buildDunePackage, fetchurl }: 2 + 3 + buildDunePackage rec { 4 + pname = "unisim_archisec"; 5 + version = "0.0.5"; 6 + 7 + src = fetchurl { 8 + url = "https://github.com/binsec/unisim_archisec/releases/download/0.0.5/unisim_archisec-0.0.5.tbz"; 9 + sha256 = "sha256-94Ky7rtR8oFTtWshTYaY6gyJdqrY3QKMF7qTkZQweXQ="; 10 + }; 11 + 12 + duneVersion = "3"; 13 + 14 + meta = { 15 + homepage = "https://binsec.github.io"; 16 + downloadPage = "https://github.com/binsec/unisim_archisec"; 17 + description = "UNISIM-VP DBA decoder"; 18 + license = lib.licenses.bsd3; 19 + maintainers = [ lib.maintainers.david-hamelin ]; 20 + }; 21 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 1628 1628 1629 1629 unionFind = callPackage ../development/ocaml-modules/unionFind { }; 1630 1630 1631 + unisim_archisec = callPackage ../development/ocaml-modules/unisim_archisec { }; 1632 + 1631 1633 unix-errno = callPackage ../development/ocaml-modules/unix-errno { }; 1632 1634 1633 1635 unstrctrd = callPackage ../development/ocaml-modules/unstrctrd { };