19 lines
332 B
Nix
19 lines
332 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|