2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, boost166 }:
|
2017-12-15 02:06:45 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "SkypeExport";
|
2017-12-15 02:06:45 +00:00
|
|
|
version = "1.4.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Temptin";
|
|
|
|
repo = "SkypeExport";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1ilkh0s3dz5cp83wwgmscnfmnyck5qcwqg1yxp9zv6s356dxnbak";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
2018-09-02 22:59:23 +00:00
|
|
|
buildInputs = [ boost166 ];
|
2017-12-15 02:06:45 +00:00
|
|
|
|
|
|
|
preConfigure = "cd src/SkypeExport/_gccbuild/linux";
|
|
|
|
installPhase = "install -Dt $out/bin SkypeExport";
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-12-15 02:06:45 +00:00
|
|
|
description = "Export Skype history to HTML";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/Temptin/SkypeExport";
|
2017-12-15 02:06:45 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2021-12-31 18:48:55 +00:00
|
|
|
maintainers = with maintainers; [ yana ];
|
2017-12-15 02:06:45 +00:00
|
|
|
};
|
|
|
|
}
|