summaryrefslogtreecommitdiff
path: root/pkgs/webapps/ttrss/plugins/ff_instagram/default.nix
blob: 3540f737019de6e41aa799174cb03c74f8a5826b (plain) (blame)
1
2
3
4
5
6
7
8
{ stdenv, mylibs }:
stdenv.mkDerivation (mylibs.fetchedGithub ./ff_instagram.json // {
  installPhase = ''
    mkdir $out
    cp -a . $out
    '';
  passthru.pluginName = "ff_instagram";
})