Merge pull request #208592 from r-ryantm/auto-update/sleuthkit
sleuthkit: 4.11.1 -> 4.12.0
This commit is contained in:
commit
304133f91d
1 changed files with 33 additions and 6 deletions
|
@ -1,14 +1,25 @@
|
|||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, libewf, afflib, openssl, zlib, openjdk, perl, ant }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, autoreconfHook
|
||||
, libewf
|
||||
, afflib
|
||||
, openssl
|
||||
, zlib
|
||||
, openjdk
|
||||
, perl
|
||||
, ant
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "4.11.1";
|
||||
version = "4.12.0";
|
||||
pname = "sleuthkit";
|
||||
|
||||
sleuthsrc = fetchFromGitHub {
|
||||
owner = "sleuthkit";
|
||||
repo = "sleuthkit";
|
||||
rev = "${pname}-${version}";
|
||||
sha256 = "sha256-TM8My4dAZigukwMUNDnP3aVCQ8JDdVv/KNkchDvCl9I=";
|
||||
hash = "sha256-NX7LNtor7UQJ6HCDz9wGpxbqrLQTTH9+543hOaQOAz4=";
|
||||
};
|
||||
|
||||
# Fetch libraries using a fixed output derivation
|
||||
|
@ -16,7 +27,10 @@ stdenv.mkDerivation rec {
|
|||
|
||||
version = "1.0";
|
||||
pname = "sleuthkit-deps";
|
||||
nativeBuildInputs = [ openjdk ant ];
|
||||
nativeBuildInputs = [
|
||||
openjdk
|
||||
ant
|
||||
];
|
||||
|
||||
src = sleuthsrc;
|
||||
|
||||
|
@ -56,8 +70,20 @@ stdenv.mkDerivation rec {
|
|||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook openjdk perl ant rdeps ];
|
||||
buildInputs = [ libewf afflib openssl zlib ];
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
openjdk
|
||||
perl
|
||||
ant
|
||||
rdeps
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libewf
|
||||
afflib
|
||||
openssl
|
||||
zlib
|
||||
];
|
||||
|
||||
# Hack to fix the RPATH
|
||||
preFixup = ''
|
||||
|
@ -82,6 +108,7 @@ stdenv.mkDerivation rec {
|
|||
meta = with lib; {
|
||||
description = "A forensic/data recovery tool";
|
||||
homepage = "https://www.sleuthkit.org/";
|
||||
changelog = "https://github.com/sleuthkit/sleuthkit/releases/tag/sleuthkit-${version}";
|
||||
maintainers = with maintainers; [ raskin gfrascadorio ];
|
||||
platforms = platforms.linux;
|
||||
sourceProvenance = with sourceTypes; [
|
||||
|
|
Loading…
Reference in a new issue