{stdenv, lib, fetchFromGitHub }: stdenv.mkDerivation rec { pname = "rutorrent"; version = "4.0.1-hotfix"; src = fetchFromGitHub { owner = "Novik"; repo = "ruTorrent"; rev = "v${version}"; sha256 = "GmAF1doqkEX2xyu+hsvchwNuXs8xvtYs4s14MPcxKKk="; }; 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; }; }