nixpkgs/pkgs/servers/udpt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
712 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub }:
2016-10-02 20:11:48 +00:00
rustPlatform.buildRustPackage rec {
pname = "udpt";
2022-01-20 21:16:21 +00:00
version = "3.1.1";
2016-10-02 20:11:48 +00:00
src = fetchFromGitHub {
owner = "naim94a";
repo = "udpt";
rev = "${pname}-${version}";
2022-01-20 21:16:21 +00:00
sha256 = "sha256-G3LzbV3b1Y/2SPIBS1kZDuLuGF5gV/H1LFBRhevpdjU=";
2016-10-02 20:11:48 +00:00
};
2022-01-20 21:16:21 +00:00
cargoSha256 = "sha256-ebLVyUB65fW8BWctxXnYxrnl/2IESd4YJXeiMsMXn9s=";
2016-10-02 20:11:48 +00:00
postInstall = ''
install -D udpt.toml $out/share/udpt/udpt.toml
2016-10-02 20:11:48 +00:00
'';
meta = {
description = "A lightweight UDP torrent tracker";
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 ];
mainProgram = "udpt-rs";
2016-10-02 20:11:48 +00:00
};
}