Unbork journals audit logs and introduce audit option (#379629)
[NixPkgs.git] / pkgs / by-name / li / libbfio / package.nix
blob21fad908b6f1acbcdc32498701a06396d6f75c4d
2   lib,
3   fetchzip,
4   stdenv,
5   gettext,
6   libtool,
7   pkg-config,
8 }:
10 stdenv.mkDerivation (finalAttrs: {
11   pname = "libbfio";
12   version = "20221025";
14   src = fetchzip {
15     url = "https://github.com/libyal/libbfio/releases/download/${finalAttrs.version}/libbfio-alpha-${finalAttrs.version}.tar.gz";
16     hash = "sha256-SwKQlmifyUo49yvo8RV+0nfvScPY5u+UrwjRZK2+qAg=";
17   };
19   nativeBuildInputs = [ pkg-config ];
20   buildInputs = [
21     gettext
22     libtool
23   ];
25   meta = {
26     description = "Library to provide basic file input/output abstraction";
27     homepage = "https://github.com/libyal/libbfio";
28     license = with lib.licenses; [
29       gpl3Plus
30       lgpl3Plus
31     ];
32     maintainers = with lib.maintainers; [ d3vil0p3r ];
33     platforms = with lib.platforms; unix ++ windows;
34   };