nixos-config/modules/qbittorrent/exporter/default.nix

19 lines
332 B
Nix
Raw Normal View History

2022-03-18 22:14:09 +01:00
{ lib, buildGoModule }:
buildGoModule rec {
name = "qbittorrent_exporter";
src = ./.;
subPackages = [ "." ];
vendorSha256 = "sha256-YR3Xc8sXuHBnMEy+Gp1dfTSJjwcLDUaFZDRcacAWeu0=";
doCheck = false; # no tests
meta = with lib; {
license = licenses.gpl3Plus;
maintainer = with mainatiners; [ sbruder ];
};
}