summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2016-08-24 17:51:22 +0200
committermakefu <github@syntax-fehler.de>2016-08-24 17:51:22 +0200
commit11797ea564bb72f556e0aada82c33bad28702cae (patch)
treeec1098b4c782253a2ea55c42965df78c00655d8e /krebs/5pkgs
parent938e21973a1dc01375024f27d266d3bc6c413cd9 (diff)
m 3 rtorrent -> k 3 rtorrent
Diffstat (limited to 'krebs/5pkgs')
-rw-r--r--krebs/5pkgs/rutorrent/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/krebs/5pkgs/rutorrent/default.nix b/krebs/5pkgs/rutorrent/default.nix
new file mode 100644
index 00000000..5a225955
--- /dev/null
+++ b/krebs/5pkgs/rutorrent/default.nix
@@ -0,0 +1,15 @@
+{ 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
+ '';
+}