File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ {
2+ lib ,
3+ fetchFromGitHub ,
4+ rustPlatform ,
5+ perl ,
6+ testers ,
7+ avml ,
8+ nix-update-script ,
9+ } :
10+
11+ rustPlatform . buildRustPackage rec {
12+ pname = "avml" ;
13+ version = "0.14.0" ;
14+
15+ src = fetchFromGitHub {
16+ owner = "microsoft" ;
17+ repo = "avml" ;
18+ rev = "refs/tags/v${ version } " ;
19+ hash = "sha256-MIqQ5NRWAfXm7AblsKCrUiaYN5IGUo2jWJMJZL+w3V4=" ;
20+ } ;
21+
22+ cargoHash = "sha256-gcpjrxnQDyO92OW6LZVc4x73TmTtQoaEYhmGmqhz8ng=" ;
23+
24+ nativeBuildInputs = [ perl ] ;
25+
26+ passthru . tests . version = testers . testVersion { package = avml ; } ;
27+
28+ passthru . updateScript = nix-update-script { } ;
29+
30+ meta = {
31+ description = "A portable volatile memory acquisition tool for Linux" ;
32+ homepage = "https://github.com/microsoft/avml" ;
33+ license = lib . licenses . mit ;
34+ maintainers = [ lib . maintainers . lesuisse ] ;
35+ platforms = lib . platforms . linux ;
36+ mainProgram = "avml" ;
37+ } ;
38+ }
You can’t perform that action at this time.
0 commit comments