summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/SkypeExport/default.nix
blob: 716989c7b565e20ab13a6ef77e27bdfac15046e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchFromGitHub, cmake, boost166 }:

stdenv.mkDerivation rec {
  pname = "SkypeExport";
  version = "1.4.0";

  src = fetchFromGitHub {
    owner = "Temptin";
    repo = "SkypeExport";
    rev = "v${version}";
    sha256 = "1ilkh0s3dz5cp83wwgmscnfmnyck5qcwqg1yxp9zv6s356dxnbak";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ boost166 ];

  preConfigure = "cd src/SkypeExport/_gccbuild/linux";
  installPhase = "install -Dt $out/bin SkypeExport";

  meta = with stdenv.lib; {
    description = "Export Skype history to HTML";
    homepage = https://github.com/Temptin/SkypeExport;
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ yegortimoshenko ];
  };
}