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