Merge pull request #139919 from SuperSandro2000/limesctl

limesctl: init at 2.0.0
This commit is contained in:
Sandro 2021-09-30 13:52:22 +02:00 committed by GitHub
commit 5207f8bc4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "limesctl";
version = "2.0.0";
src = fetchFromGitHub {
owner = "sapcc";
repo = pname;
rev = "v${version}";
sha256 = "sha256-fhmGVgJ/4xnf6pe8aXxx1KEmLInxm54my+qgSU4Vc/k=";
};
vendorSha256 = "sha256-9MlymY5gM9/K2+7/yTa3WaSIfDJ4gRf33vSCwdIpNqw=";
subPackages = [ "." ];
meta = with lib; {
description = "CLI for Limes";
homepage = "https://github.com/sapcc/limesctl";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}

View File

@ -24776,6 +24776,8 @@ with pkgs;
withPortAudio = stdenv.isDarwin;
};
limesctl = callPackage ../applications/misc/limesctl { };
linssid = libsForQt5.callPackage ../applications/networking/linssid { };
deadd-notification-center = callPackage ../applications/misc/deadd-notification-center/default.nix { };