SkypeExport: init at 1.4.0

This commit is contained in:
Yegor Timoshenko 2017-12-15 02:06:45 +00:00
parent 1a98fc40e9
commit d4ed769925
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub, cmake, boost }:
stdenv.mkDerivation rec {
name = "SkypeExport-${version}";
version = "1.4.0";
src = fetchFromGitHub {
owner = "Temptin";
repo = "SkypeExport";
rev = "v${version}";
sha256 = "1ilkh0s3dz5cp83wwgmscnfmnyck5qcwqg1yxp9zv6s356dxnbak";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost ];
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 ];
};
}

View File

@ -16686,6 +16686,8 @@ with pkgs;
skype_call_recorder = callPackage ../applications/networking/instant-messengers/skype-call-recorder { };
SkypeExport = callPackage ../applications/networking/instant-messengers/SkypeExport { };
slmenu = callPackage ../applications/misc/slmenu {};
slop = callPackage ../tools/misc/slop {};