2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2019-11-24 22:16:01 +00:00
|
|
|
, fetchFromGitHub
|
2021-03-25 16:32:39 +00:00
|
|
|
, fetchpatch
|
2016-06-21 00:58:04 +01:00
|
|
|
, cmake
|
2021-03-25 16:32:39 +00:00
|
|
|
, pkg-config
|
2019-11-24 22:16:01 +00:00
|
|
|
, mbedtls
|
|
|
|
, fuse
|
2016-06-21 00:58:04 +01:00
|
|
|
}:
|
2019-11-24 22:16:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "dislocker";
|
2020-11-24 23:34:41 +00:00
|
|
|
version = "0.7.3";
|
2016-06-21 00:58:04 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "aorimn";
|
|
|
|
repo = "dislocker";
|
|
|
|
rev = "v${version}";
|
2020-11-24 23:34:41 +00:00
|
|
|
sha256 = "1ak68s1v5dwh8y2dy5zjybmrh0pnqralmyqzis67y21m87g47h2k";
|
2016-06-21 00:58:04 +01:00
|
|
|
};
|
|
|
|
|
2021-03-25 16:32:39 +00:00
|
|
|
patches = [
|
|
|
|
# This patch
|
|
|
|
# 1. adds support for the latest FUSE on macOS
|
|
|
|
# 2. uses pkg-config to find libfuse instead of searching in predetermined
|
|
|
|
# paths
|
|
|
|
#
|
|
|
|
# https://github.com/Aorimn/dislocker/pull/246
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/Aorimn/dislocker/commit/7744f87c75fcfeeb414d0957771042b10fb64e62.diff";
|
|
|
|
sha256 = "0bpyccbbfjsidsrd2q9qylb95nvi8g3glb3jss7xmhywj86bhzr5";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2019-11-24 22:16:01 +00:00
|
|
|
buildInputs = [ fuse mbedtls ];
|
2016-06-21 00:58:04 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-06-21 00:58:04 +01:00
|
|
|
description = "Read BitLocker encrypted partitions in Linux";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/aorimn/dislocker";
|
2016-06-21 00:58:04 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ elitak ];
|
2021-03-25 16:32:39 +00:00
|
|
|
platforms = platforms.unix;
|
2016-06-21 00:58:04 +01:00
|
|
|
};
|
|
|
|
}
|