summaryrefslogtreecommitdiffstats
path: root/lass/5pkgs/bitlbee-dev.nix
blob: dd129591e490be4e21c89c560f6cab6ce95f0e80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ fetchurl, stdenv, gnutls, glib, pkgconfig, check, libotr, python }:

stdenv.mkDerivation rec {
  name = "bitlbee-3.4.1";

  src = fetchurl {
    url = "mirror://bitlbee/src/${name}.tar.gz";
    sha256 = "1qf0ypa9ba5jvsnpg9slmaran16hcc5fnfzbb1sdch1hjhchn2jh";
  };

  buildInputs = [ gnutls glib pkgconfig libotr python ];

  buildPhase = "";

  installPhase = ''
    make install-dev
  '';

}