Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 33 lines 749 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "morf"; 9 version = "1.0.0"; 10 11 src = fetchFromGitHub { 12 owner = "amrudesh1"; 13 repo = "morf"; 14 tag = "v${version}"; 15 hash = "sha256-3PJ+YtKSH6HHAXBSHO8iMP2HFiuW1RQ0N8iUjQD7NBw="; 16 }; 17 18 vendorHash = "sha256-tK58UGCI7CuJsFSM7htRQT98tzunAOXyYAxhCkdTJdU="; 19 20 ldflags = [ 21 "-s" 22 "-w" 23 ]; 24 25 meta = { 26 description = "Offensive mobile security tool designed to identify and address sensitive information"; 27 homepage = "https://github.com/amrudesh1/morf"; 28 changelog = "https://github.com/amrudesh1/morf/releases/tag/v${version}"; 29 license = lib.licenses.asl20; 30 maintainers = with lib.maintainers; [ fab ]; 31 mainProgram = "morf"; 32 }; 33}