lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

libpff: init at 20211114

+30
+28
pkgs/tools/misc/libpff/default.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchzip 4 + , pkg-config 5 + , autoreconfHook 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "libpff"; 10 + version = "20211114"; 11 + 12 + src = fetchzip { 13 + url = "https://github.com/libyal/libpff/releases/download/${version}/libpff-alpha-${version}.tar.gz"; 14 + sha256 = "sha256-UmGRBgi78nDSuuOXi/WmODojWU5AbQGKNQwLseoh714="; 15 + }; 16 + 17 + nativeBuildInputs = [ pkg-config autoreconfHook ]; 18 + outputs = [ "bin" "dev" "out" ]; 19 + 20 + meta = { 21 + description = "Library and tools to access the Personal Folder File (PFF) and the Offline Folder File (OFF) format"; 22 + homepage = "https://github.com/libyal/libpff"; 23 + downloadPage = "https://github.com/libyal/libpff/releases"; 24 + changelog = "https://github.com/libyal/libpff/blob/${version}/ChangeLog"; 25 + license = lib.licenses.lgpl3Only; 26 + maintainers = with lib.maintainers; [ hacker1024 ]; 27 + }; 28 + }
+2
pkgs/top-level/all-packages.nix
··· 8497 8497 8498 8498 libgen-cli = callPackage ../tools/misc/libgen-cli { }; 8499 8499 8500 + libpff = callPackage ../tools/misc/libpff {}; 8501 + 8500 8502 licensor = callPackage ../tools/misc/licensor { }; 8501 8503 8502 8504 lesspipe = callPackage ../tools/misc/lesspipe { };