lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 24 lines 571 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "limesctl"; 5 version = "2.0.1"; 6 7 src = fetchFromGitHub { 8 owner = "sapcc"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "sha256-E6LwNiCykBqjkifUSi6oBWqCEhkRO+03HSKn4p45kh0="; 12 }; 13 14 vendorSha256 = "sha256-9MlymY5gM9/K2+7/yTa3WaSIfDJ4gRf33vSCwdIpNqw="; 15 16 subPackages = [ "." ]; 17 18 meta = with lib; { 19 description = "CLI for Limes"; 20 homepage = "https://github.com/sapcc/limesctl"; 21 license = licenses.asl20; 22 maintainers = with maintainers; [ SuperSandro2000 ]; 23 }; 24}