nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 fetchFromGitHub,
4 buildGhidraExtension,
5}:
6buildGhidraExtension (finalAttrs: {
7 pname = "lightkeeper";
8 version = "1.2.4";
9
10 src = fetchFromGitHub {
11 owner = "WorksButNotTested";
12 repo = "lightkeeper";
13 rev = finalAttrs.version;
14 hash = "sha256-aGMWg6VQleKH/txlxpSw19QOotWZSqeW5Ve2SpWGhgA=";
15 };
16 preConfigure = ''
17 cd lightkeeper
18 '';
19 meta = {
20 description = "Port of the Lighthouse plugin to GHIDRA";
21 homepage = "https://github.com/WorksButNotTested/lightkeeper";
22 license = lib.licenses.asl20;
23 };
24})