lol

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>

+31
+29
pkgs/development/libraries/libbde/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , fuse 5 + , ncurses 6 + , python3 7 + }: 8 + 9 + stdenv.mkDerivation rec { 10 + pname = "libbde"; 11 + version = "20210605"; 12 + 13 + src = fetchurl { 14 + url = "https://github.com/libyal/libbde/releases/download/${version}/${pname}-alpha-${version}.tar.gz"; 15 + sha256 = "0dk5h7gvp2fgg21n7k600mnayg4g4pc0lm7317k43j1q0p4hkfng"; 16 + }; 17 + 18 + buildInputs = [ fuse ncurses python3 ]; 19 + 20 + configureFlags = [ "--enable-python" ]; 21 + 22 + meta = with lib; { 23 + description = "Library to access the BitLocker Drive Encryption (BDE) format"; 24 + homepage = "https://github.com/libyal/libbde/"; 25 + license = licenses.lgpl3; 26 + maintainers = with maintainers; [ eliasp ]; 27 + platforms = platforms.all; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 16975 16975 libbass = (callPackage ../development/libraries/audio/libbass { }).bass; 16976 16976 libbass_fx = (callPackage ../development/libraries/audio/libbass { }).bass_fx; 16977 16977 16978 + libbde = callPackage ../development/libraries/libbde { }; 16979 + 16978 16980 libbencodetools = callPackage ../development/libraries/libbencodetools { }; 16979 16981 16980 16982 libbluedevil = callPackage ../development/libraries/libbluedevil { };