2020-07-21 11:27:18 +01:00
|
|
|
{ stdenv, 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
|
|
|
};
|
|
|
|
|
2020-07-21 11:27:18 +01:00
|
|
|
cargoSha256 = "1cmd80ndjxdmyfjpm1f04rwf64501nyi6wdsj7lxidgd1v92wy2c";
|
|
|
|
verifyCargoDeps = true;
|
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";
|
2016-10-02 21:11:48 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ makefu ];
|
|
|
|
};
|
|
|
|
}
|