mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
transmission-remote-cli: remove
This finally stopped working after transmission upgraded the API protocol to v3.0.
This commit is contained in:
parent
7128fcea5a
commit
b42a421e47
@ -1,26 +0,0 @@
|
||||
{ stdenv, fetchurl, pythonPackages }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "transmission-remote-cli";
|
||||
version = "1.7.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/fagga/transmission-remote-cli/archive/v${version}.tar.gz";
|
||||
sha256 = "1y0hkpcjf6jw9xig8yf484hbhy63nip0pkchx401yxj81m25l4z9";
|
||||
};
|
||||
|
||||
buildInputs = with pythonPackages; [ python wrapPython ];
|
||||
|
||||
installPhase = ''
|
||||
install -D transmission-remote-cli $out/bin/transmission-remote-cli
|
||||
install -D transmission-remote-cli.1 $out/share/man/man1/transmission-remote-cli.1
|
||||
wrapPythonPrograms
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Curses interface for the Transmission BitTorrent daemon";
|
||||
homepage = "https://github.com/fagga/transmission-remote-cli";
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
};
|
||||
}
|
@ -612,6 +612,7 @@ mapAliases ({
|
||||
transcribe = throw "transcribe has been removed after being marked a broken for over a year"; # added 2020-09-16
|
||||
transmission_gtk = transmission-gtk; # added 2018-01-06
|
||||
transmission_remote_gtk = transmission-remote-gtk; # added 2018-01-06
|
||||
transmission-remote-cli = "transmission-remote-cli has been removed, as the upstream project has been abandoned. Please use tremc instead"; # added 2020-10-14
|
||||
transporter = throw "transporter has been removed. It was archived upstream, so it's considered abandoned.";
|
||||
trilium = throw "trilium has been removed. Please use trilium-desktop instead."; # added 2020-04-29
|
||||
truecrypt = veracrypt; # added 2018-10-24
|
||||
|
@ -23791,7 +23791,6 @@ in
|
||||
transmission-gtk = transmission.override { enableGTK3 = true; };
|
||||
transmission-qt = transmission.override { enableQt = true; };
|
||||
|
||||
transmission-remote-cli = callPackage ../applications/networking/p2p/transmission-remote-cli {};
|
||||
transmission-remote-gtk = callPackage ../applications/networking/p2p/transmission-remote-gtk {};
|
||||
|
||||
transgui = callPackage ../applications/networking/p2p/transgui { };
|
||||
|
Loading…
Reference in New Issue
Block a user