Skip to content

Commit

Permalink
libbfio: init at 20221025
Browse files Browse the repository at this point in the history
(cherry picked from commit 68ab630)
  • Loading branch information
D3vil0p3r authored and github-actions[bot] committed Jan 28, 2024
1 parent adfee00 commit 7af8fbf
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/by-name/li/libbfio/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ lib
, fetchzip
, fetchpatch
, stdenv
, gettext
, libtool
, pkg-config
}:

stdenv.mkDerivation (finalAttrs: {
pname = "libbfio";
version = "20221025";

src = fetchzip {
url = "https://github.com/libyal/libbfio/releases/download/${finalAttrs.version}/libbfio-alpha-${finalAttrs.version}.tar.gz";
hash = "sha256-SwKQlmifyUo49yvo8RV+0nfvScPY5u+UrwjRZK2+qAg=";
};

nativeBuildInputs = [ pkg-config ];
buildInputs = [ gettext libtool ];

meta = {
description = "Library to provide basic file input/output abstraction";
homepage = "https://github.com/libyal/libbfio";
license = with lib.licenses; [ gpl3Plus lgpl3Plus ];
maintainers = with lib.maintainers; [ d3vil0p3r ];
platforms = with lib.platforms; unix ++ windows;
};
})

0 comments on commit 7af8fbf

Please sign in to comment.