nixos-config/modules/qbittorrent/exporter/default.nix
Simon Bruder 10b8d432d5
Relicense
This applies the REUSE specification to the repository, so the licensing
information can be tracked for every file individually.
2024-01-13 14:39:22 +01:00

23 lines
446 B
Nix

# SPDX-FileCopyrightText: 2022-2023 Simon Bruder <simon@sbruder.de>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
{ lib, buildGoModule }:
buildGoModule rec {
name = "qbittorrent_exporter";
src = ./.;
subPackages = [ "." ];
vendorHash = "sha256-rql1QlbRgLhUJBE2c9owraCUv4r7O2oaZCijY1vs/3I=";
doCheck = false; # no tests
meta = with lib; {
license = licenses.gpl3Plus;
maintainer = with mainatiners; [ sbruder ];
};
}