Merge pull request #122454 from nixbitcoin/XD

This commit is contained in:
Sandro 2021-05-11 17:31:33 +02:00 committed by GitHub
commit b1eb90c00f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 41 additions and 0 deletions

View file

@ -7201,6 +7201,16 @@
githubId = 16385648;
name = "Niko Pavlinek";
};
nixbitcoin = {
email = "nixbitcoin@i2pmail.org";
github = "nixbitcoin";
githubId = 45737139;
name = "nixbitcoindev";
keys = [{
longkeyid = "rsa4096/0xDD11F9AD5308B3BA";
fingerprint = "577A 3452 7F3E 2A85 E80F E164 DD11 F9AD 5308 B3BA";
}];
};
nixinator = {
email = "33lockdown33@protonmail.com";
github = "nixinator";

View file

@ -0,0 +1,29 @@
{ pkgs, buildGoModule, fetchFromGitHub, lib, perl }:
buildGoModule rec {
pname = "XD";
version = "0.4.0";
src = fetchFromGitHub {
owner = "majestrate";
repo = "XD";
rev = "v${version}";
sha256 = "sha256-fXENoqhR04TYS/kAJUqsqa0+j+KyzdsMlXIZ2GMPMhc=";
};
vendorSha256 = "1wg3cym2rwrhjsqlgd38l8mdq5alccz808465117n3vyga9m35lq";
checkInputs = [ perl ];
postInstall = ''
ln -s $out/bin/XD $out/bin/XD-CLI
'';
meta = with lib; {
description = "i2p bittorrent client";
homepage = "https://xd-torrent.github.io";
maintainers = with maintainers; [ nixbitcoin ];
license = licenses.mit;
platforms = platforms.linux;
};
}

View file

@ -27215,6 +27215,8 @@ in
picom = callPackage ../applications/window-managers/picom {};
xd = callPackage ../applications/networking/p2p/xd {};
xdaliclock = callPackage ../tools/misc/xdaliclock {};
xdg-dbus-proxy = callPackage ../development/libraries/xdg-dbus-proxy { };