at 24.05-pre 24 lines 587 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "marathonctl"; 5 version = "0.0.7"; 6 7 src = fetchFromGitHub { 8 owner = "shoenig"; 9 repo = "marathonctl"; 10 rev = "v${version}"; 11 sha256 = "sha256-MigmvOwYa0uYPexchS4MP74I1Tp6QHYuQVSOh1+FrMg="; 12 }; 13 14 vendorHash = "sha256-Oiol4KuPOyJq2Bfc5div+enX4kQqYn20itmwWBecuIg="; 15 16 ldflags = [ "-s" "-w" ]; 17 18 meta = with lib; { 19 homepage = "https://github.com/shoenig/marathonctl"; 20 description = "CLI tool for Marathon"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ manveru ]; 23 }; 24}