19 lines
332 B
Nix
19 lines
332 B
Nix
{ lib, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
name = "qbittorrent_exporter";
|
|
|
|
src = ./.;
|
|
|
|
subPackages = [ "." ];
|
|
|
|
vendorSha256 = "sha256-rql1QlbRgLhUJBE2c9owraCUv4r7O2oaZCijY1vs/3I=";
|
|
|
|
doCheck = false; # no tests
|
|
|
|
meta = with lib; {
|
|
license = licenses.gpl3Plus;
|
|
maintainer = with mainatiners; [ sbruder ];
|
|
};
|
|
}
|