diff options
author | makefu <github@syntax-fehler.de> | 2016-08-24 17:31:15 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-08-24 17:31:15 +0200 |
commit | 938e21973a1dc01375024f27d266d3bc6c413cd9 (patch) | |
tree | fa12532588ca864a61d039fc8a7886d809f026d6 /makefu/5pkgs/rutorrent | |
parent | b2815e98402c9983fa7174daa40bed6a8742e935 (diff) |
m 3 rtorrent: put rutorrent into separate package
Diffstat (limited to 'makefu/5pkgs/rutorrent')
-rw-r--r-- | makefu/5pkgs/rutorrent/default.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/makefu/5pkgs/rutorrent/default.nix b/makefu/5pkgs/rutorrent/default.nix new file mode 100644 index 000000000..5a2259552 --- /dev/null +++ b/makefu/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 + ''; +} |