Simon Bruder
f945341668
This applies the REUSE specification to the repository, so the licensing information can be tracked for every file individually.
23 lines
446 B
Nix
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 ];
|
|
};
|
|
}
|