mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
37 lines
1001 B
Nix
37 lines
1001 B
Nix
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, boost }:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "skypeexport";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Temptin";
|
|
repo = "SkypeExport";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-Uy3bmylDm/3T7T48zBkuk3lbnWW6Ps4Huqz8NjSAk8Y=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "boost167.patch";
|
|
url = "https://github.com/Temptin/SkypeExport/commit/ef60f2e4fc9e4a5764c8d083a73b585457bc10b1.patch";
|
|
hash = "sha256-t+/v7c66OULmQCD/sNt+iDJeQ/6UG0CJ8uQY2PVSFQo=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ boost ];
|
|
|
|
preConfigure = "cd src/SkypeExport/_gccbuild/linux";
|
|
installPhase = "install -Dt $out/bin SkypeExport";
|
|
|
|
meta = with lib; {
|
|
description = "Export Skype history to HTML";
|
|
mainProgram = "SkypeExport";
|
|
homepage = "https://github.com/Temptin/SkypeExport";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = [ ];
|
|
};
|
|
})
|