about summary refs log tree commit diff
path: root/pkgs/tools/misc/dumptorrent/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/dumptorrent/default.nix')
-rw-r--r--pkgs/tools/misc/dumptorrent/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/tools/misc/dumptorrent/default.nix b/pkgs/tools/misc/dumptorrent/default.nix
deleted file mode 100644
index c80a696f8cba..000000000000
--- a/pkgs/tools/misc/dumptorrent/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib, stdenv, fetchurl }:
-
-stdenv.mkDerivation rec {
-    pname = "dumptorrent";
-    version = "1.2";
-
-    src = fetchurl {
-      url = "mirror://sourceforge/dumptorrent/dumptorrent-${version}.tar.gz";
-      sha256 = "073h03bmpfdy15qh37lvppayld2747i4acpyk0pm5nf2raiak0zm";
-    };
-
-    postPatch = ''
-      substituteInPlace Makefile \
-        --replace "gcc" "$CC"
-    '';
-
-    installPhase = ''
-      mkdir -p $out/bin
-      cp ./dumptorrent $out/bin
-    '';
-
-    meta = with lib; {
-      description = "Dump .torrent file information";
-      homepage = "https://sourceforge.net/projects/dumptorrent/";
-      license = licenses.gpl2Only;
-      maintainers = [ maintainers.zohl ];
-      platforms = platforms.all;
-      mainProgram = "dumptorrent";
-    };
-}