about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/instant-messengers/bitlbee/plugins.nix
blob: 4e05e7cae970563b95eaf0add9e10fd6129e0fe0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, bitlbee }:

with stdenv.lib;

plugins:

stdenv.mkDerivation {
  inherit bitlbee plugins;
  name = "bitlbee-plugins";
  buildInputs = [ bitlbee plugins ];
  phases = [ "installPhase" ];
  installPhase = ''
    mkdir -p $out/lib/bitlbee
    for plugin in $plugins; do
      for thing in $(ls $plugin/lib/bitlbee); do
        ln -s $plugin/lib/bitlbee/$thing $out/lib/bitlbee/
      done
    done
  '';
}