init: libbde at 20210605

Add an early alpha of libbde, which is a library to deal with the
BitLocker Drive Encryption (BDE) format.

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Elias Probst
2021-10-06 00:21:24 +02:00
parent 0a68ef410b
commit 5d9bd0452f
2 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{ lib
, stdenv
, fetchurl
, fuse
, ncurses
, python3
}:
stdenv.mkDerivation rec {
pname = "libbde";
version = "20210605";
src = fetchurl {
url = "https://github.com/libyal/libbde/releases/download/${version}/${pname}-alpha-${version}.tar.gz";
sha256 = "0dk5h7gvp2fgg21n7k600mnayg4g4pc0lm7317k43j1q0p4hkfng";
};
buildInputs = [ fuse ncurses python3 ];
configureFlags = [ "--enable-python" ];
meta = with lib; {
description = "Library to access the BitLocker Drive Encryption (BDE) format";
homepage = "https://github.com/libyal/libbde/";
license = licenses.lgpl3;
maintainers = with maintainers; [ eliasp ];
platforms = platforms.all;
};
}

View File

@@ -16975,6 +16975,8 @@ with pkgs;
libbass = (callPackage ../development/libraries/audio/libbass { }).bass;
libbass_fx = (callPackage ../development/libraries/audio/libbass { }).bass_fx;
libbde = callPackage ../development/libraries/libbde { };
libbencodetools = callPackage ../development/libraries/libbencodetools { };
libbluedevil = callPackage ../development/libraries/libbluedevil { };