summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/rutorrent/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'makefu/5pkgs/rutorrent/default.nix')
-rw-r--r--makefu/5pkgs/rutorrent/default.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/makefu/5pkgs/rutorrent/default.nix b/makefu/5pkgs/rutorrent/default.nix
deleted file mode 100644
index 5a225955..00000000
--- a/makefu/5pkgs/rutorrent/default.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{ pkgs, ... }:
-pkgs.stdenv.mkDerivation {
- name = "rutorrent-src-3.7";
- src = pkgs.fetchFromGitHub {
- owner = "Novik";
- repo = "rutorrent";
- rev = "b727523a153454d4976f04b0c47336ae57cc50d5";
- sha256 = "0s5wa0jnck781amln9c2p4pc0i5mq3j5693ra151lnwhz63aii4a";
- };
-
- phases = [ "installPhase" ];
- installPhase = ''
- cp -r $src $out
- '';
-}