14 # VLC does not know where the vlc-bittorrent package is installed.
15 # make sure to have something like:
16 # environment.variables.VLC_PLUGIN_PATH = "${pkgs.vlc-bittorrent}";
18 stdenv.mkDerivation (finalAttrs: {
19 pname = "vlc-bittorrent";
22 src = fetchFromGitHub {
24 repo = "vlc-bittorrent";
25 rev = "v${finalAttrs.version}";
26 hash = "sha256-7FHeQYHbMKZJ3yeHqxTTAUwghTje+gEX8gSEJzfG5sQ=";
44 # It's a library, should not have a desktop file
50 description = "Bittorrent plugin for VLC";
51 homepage = "https://github.com/johang/vlc-bittorrent";
52 license = licenses.gpl3Plus;
53 platforms = platforms.linux;
54 maintainers = [ maintainers.kintrix ];