about summary refs log tree commit diff
path: root/pkgs/tools/misc/libpff/default.nix
blob: 62ee7c8f447c8cf3e5d43ecf3bb1b9fe8c4bff13 (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
28
{ stdenv
, lib
, fetchzip
, pkg-config
, autoreconfHook
}:

stdenv.mkDerivation rec {
  pname = "libpff";
  version = "20211114";

  src = fetchzip {
    url = "https://github.com/libyal/libpff/releases/download/${version}/libpff-alpha-${version}.tar.gz";
    sha256 = "sha256-UmGRBgi78nDSuuOXi/WmODojWU5AbQGKNQwLseoh714=";
  };

  nativeBuildInputs = [ pkg-config autoreconfHook ];
  outputs = [ "bin" "dev" "out" ];

  meta = {
    description = "Library and tools to access the Personal Folder File (PFF) and the Offline Folder File (OFF) format";
    homepage = "https://github.com/libyal/libpff";
    downloadPage = "https://github.com/libyal/libpff/releases";
    changelog = "https://github.com/libyal/libpff/blob/${version}/ChangeLog";
    license = lib.licenses.lgpl3Only;
    maintainers = with lib.maintainers; [ hacker1024 ];
  };
}