2021-01-25 08:26:54 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub }:
|
2016-10-02 21:11:48 +01:00
|
|
|
|
2020-07-21 11:27:18 +01:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "udpt";
|
2020-07-21 11:27:18 +01:00
|
|
|
version = "3.1.0";
|
2016-10-02 21:11:48 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "naim94a";
|
|
|
|
repo = "udpt";
|
2020-07-21 11:27:18 +01:00
|
|
|
rev = "${pname}-${version}";
|
|
|
|
sha256 = "1g6l0y5x9pdra3i1npkm474glysicm4hf2m01700ack2rp43vldr";
|
2016-10-02 21:11:48 +01:00
|
|
|
};
|
|
|
|
|
2021-05-07 12:00:49 +01:00
|
|
|
cargoSha256 = "0raym4zrapn3w0a98y9amyp2qh7swd73cjslsfgfzlr9w8vsb6zs";
|
2016-10-02 21:11:48 +01:00
|
|
|
|
2020-07-21 11:27:18 +01:00
|
|
|
postInstall = ''
|
|
|
|
install -D udpt.toml $out/share/udpt/udpt.toml
|
2016-10-02 21:11:48 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A lightweight UDP torrent tracker";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://naim94a.github.io/udpt";
|
2021-01-15 07:07:56 +00:00
|
|
|
license = lib.licenses.gpl3;
|
2021-03-10 10:59:53 +00:00
|
|
|
platforms = lib.platforms.all;
|
2021-01-15 07:07:56 +00:00
|
|
|
maintainers = with lib.maintainers; [ makefu ];
|
2016-10-02 21:11:48 +01:00
|
|
|
};
|
|
|
|
}
|