nixpkgs/pkgs/applications/networking/instant-messengers/SkypeExport/default.nix

28 lines
727 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, boost166 }:
2017-12-15 02:06:45 +00:00
stdenv.mkDerivation rec {
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";
meta = with lib; {
2017-12-15 02:06:45 +00:00
description = "Export Skype history to HTML";
homepage = "https://github.com/Temptin/SkypeExport";
2017-12-15 02:06:45 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ yegortimoshenko ];
};
}