about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2020-10-14 09:25:09 +0200
committerrnhmjoj <rnhmjoj@inventati.org>2020-10-14 09:26:23 +0200
commitb42a421e47e9128df831c039df3bf80d02be8675 (patch)
tree840f8c570e56c6a7dea3c291d9cb1d580cc5554d /pkgs/applications/networking/p2p
parent7128fcea5abc26bf97657170cf77392b6cab2413 (diff)
downloadnixlib-b42a421e47e9128df831c039df3bf80d02be8675.tar
nixlib-b42a421e47e9128df831c039df3bf80d02be8675.tar.gz
nixlib-b42a421e47e9128df831c039df3bf80d02be8675.tar.bz2
nixlib-b42a421e47e9128df831c039df3bf80d02be8675.tar.lz
nixlib-b42a421e47e9128df831c039df3bf80d02be8675.tar.xz
nixlib-b42a421e47e9128df831c039df3bf80d02be8675.tar.zst
nixlib-b42a421e47e9128df831c039df3bf80d02be8675.zip
transmission-remote-cli: remove
This finally stopped working after transmission upgraded the API
protocol to v3.0.
Diffstat (limited to 'pkgs/applications/networking/p2p')
-rw-r--r--pkgs/applications/networking/p2p/transmission-remote-cli/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/applications/networking/p2p/transmission-remote-cli/default.nix b/pkgs/applications/networking/p2p/transmission-remote-cli/default.nix
deleted file mode 100644
index 7c6e35752a01..000000000000
--- a/pkgs/applications/networking/p2p/transmission-remote-cli/default.nix
+++ /dev/null
@@ -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;
-  };
-}