gnu: Add dislocker.

* gnu/packages/linux.scm (dislocker): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Petr Hodina 2022-01-13 13:24:23 +01:00 committed by Ludovic Courtès
parent b74e5283bb
commit 505d7ce025
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -2201,6 +2201,30 @@ (define-public ddate
by Robert Shea and Robert Anton Wilson.")
(license license:public-domain)))
(define-public dislocker
(package
(name "dislocker")
(version "0.7.3")
(home-page "https://github.com/Aorimn/dislocker")
(source (origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1ak68s1v5dwh8y2dy5zjybmrh0pnqralmyqzis67y21m87g47h2k"))))
(build-system cmake-build-system)
(arguments
'(#:tests? #f)) ;no test suite
(inputs (list fuse mbedtls-apache))
(synopsis "FUSE driver to read/write Windows BitLocker drives")
(description
"This package provides means to to read BitLocker encrypted
partitions. Write functionality is also provided but check the README.")
(license license:gpl2+)))
(define-public fbset
(package
(name "fbset")