This commit is contained in:
pazpi 2024-07-15 23:03:00 +02:00
parent 4300ddacb0
commit b80563f0ed
No known key found for this signature in database
GPG key ID: 0942571C4B9966BE
10 changed files with 755 additions and 1 deletions

View file

@ -0,0 +1,27 @@
{ pkgs ? import <nixpkgs> { }, lib, }:
with pkgs;
stdenv.mkDerivation rec {
pname = "rutorrent";
version = "4.2.9";
src = fetchFromGitHub {
owner = "Novik";
repo = "ruTorrent";
rev = "v${version}";
sha256 = "qgtP8IOJ5R8IWXf34MSa5WiH68oRG2j/IjGC2TPfQc0=";
};
installPhase = ''
mkdir -p $out/
cp -r . $out/
'';
meta = with lib; {
description = "Yet another web front-end for rTorrent";
homepage = "https://github.com/Novik/ruTorrent";
license = licenses.gpl3Plus;
platforms = platforms.unix;
};
}