unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#59758] [PATCH] gnu: Add dislocker.
@ 2022-12-02  4:52 phodina via Guix-patches via
  2023-01-08 11:10 ` Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: phodina via Guix-patches via @ 2022-12-02  4:52 UTC (permalink / raw)
  To: 59758


[-- Attachment #1.1: Type: text/plain, Size: 77 bytes --]

Hi,

here's a tool that allows you to access Bitlocker using Fuse.

----
Petr

[-- Attachment #1.2: Type: text/html, Size: 243 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-dislocker.patch --]
[-- Type: text/x-patch; name=0001-gnu-Add-dislocker.patch, Size: 1369 bytes --]

From d237aca245c0868df016ffa9ac49b7b3f1af11cc Mon Sep 17 00:00:00 2001
From: Petr Hodina <phodina@protonmail.com>
Date: Thu, 13 Jan 2022 13:24:23 +0100
Subject: [PATCH] gnu: Add dislocker.

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

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 8c417fb600..c398881b44 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -2167,6 +2167,26 @@ (define-public ddate
 by Robert Shea and Robert Anton Wilson.")
     (license license:public-domain)))
 
+(define-public dislocker
+  (package
+    (name "dislocker")
+    (version "0.7.3")
+    (source (origin
+              (method url-fetch)
+              (uri
+               "https://github.com/Aorimn/dislocker/archive/refs/tags/v0.7.3.tar.gz")
+              (sha256
+               (base32 "1rn1nvcavpiqpl0g1vfbm5b0w757f4cxcpg0ys3vvwj4gibpalld"))))
+    (build-system cmake-build-system)
+    (arguments '(#:tests? #f))
+    (inputs (list fuse mbedtls-apache))
+    (home-page "https://github.com/Aorimn/dislocker")
+    (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")

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#59758] [PATCH] gnu: Add dislocker.
  2022-12-02  4:52 [bug#59758] [PATCH] gnu: Add dislocker phodina via Guix-patches via
@ 2023-01-08 11:10 ` Ludovic Courtès
  2023-01-08 23:57   ` phodina via Guix-patches via
  0 siblings, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2023-01-08 11:10 UTC (permalink / raw)
  To: phodina; +Cc: 59758

Hi,

phodina <phodina@protonmail.com> skribis:

> From d237aca245c0868df016ffa9ac49b7b3f1af11cc Mon Sep 17 00:00:00 2001
> From: Petr Hodina <phodina@protonmail.com>
> Date: Thu, 13 Jan 2022 13:24:23 +0100
> Subject: [PATCH] gnu: Add dislocker.
>
> * gnu/packages/linux.scm (dislocker): New variable.
> +    (version "0.7.3")
> +    (source (origin
> +              (method url-fetch)
> +              (uri
> +               "https://github.com/Aorimn/dislocker/archive/refs/tags/v0.7.3.tar.gz")

This auto-generated tarball changes over time, as reported by ‘guix
lint’.  Could you use ‘git-fetch’ instead?

> +    (build-system cmake-build-system)
> +    (arguments '(#:tests? #f))

Please avoid disabling tests.  If you really have to, add a short
comment explaining why it has to be disabled.

> +    (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.")

Indentation is off.  :-)

Could you send an updated patch?

Thanks,
Ludo’.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#59758] [PATCH] gnu: Add dislocker.
  2023-01-08 11:10 ` Ludovic Courtès
@ 2023-01-08 23:57   ` phodina via Guix-patches via
  2023-01-09  0:00     ` phodina via Guix-patches via
  0 siblings, 1 reply; 5+ messages in thread
From: phodina via Guix-patches via @ 2023-01-08 23:57 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 59758

[-- Attachment #1: Type: text/plain, Size: 87 bytes --]

Hi Ludo’,

again thanks for the review and check the updated patch.


----
Petr

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: v2-0001-gnu-Add-dislocker.patch --]
[-- Type: text/x-patch; name=v2-0001-gnu-Add-dislocker.patch, Size: 1384 bytes --]

From bb4003c238067fed71dd7946b8108680654c5d31 Mon Sep 17 00:00:00 2001
From: Petr Hodina <phodina@protonmail.com>
Date: Thu, 13 Jan 2022 13:24:23 +0100
Subject: [PATCH v2] gnu: Add dislocker.

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

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 568c2b6b92..9366c1c664 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -2198,6 +2198,26 @@ (define-public ddate
 by Robert Shea and Robert Anton Wilson.")
     (license license:public-domain)))
 
+(define-public dislocker
+  (package
+    (name "dislocker")
+    (version "0.7.3")
+    (source (origin
+              (method url-fetch)
+              (uri
+               "https://github.com/Aorimn/dislocker/archive/refs/tags/v0.7.3.tar.gz")
+              (sha256
+               (base32 "1rn1nvcavpiqpl0g1vfbm5b0w757f4cxcpg0ys3vvwj4gibpalld"))))
+    (build-system cmake-build-system)
+    (arguments '(#:tests? #f))
+    (inputs (list fuse mbedtls-apache))
+    (home-page "https://github.com/Aorimn/dislocker")
+    (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")
-- 
2.38.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#59758] [PATCH] gnu: Add dislocker.
  2023-01-08 23:57   ` phodina via Guix-patches via
@ 2023-01-09  0:00     ` phodina via Guix-patches via
  2023-01-12 22:33       ` bug#59758: " Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: phodina via Guix-patches via @ 2023-01-09  0:00 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 59758

[-- Attachment #1: Type: text/plain, Size: 120 bytes --]

Sorry,

my mistake. That one was generated before I did git `commit --amend`.

Here's the correct one.

----
Petr

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: v2-0001-gnu-Add-dislocker.patch --]
[-- Type: text/x-patch; name=v2-0001-gnu-Add-dislocker.patch, Size: 1495 bytes --]

From 0c4e34470490f4e4e1c3ee9f7239d0ce09fea81a Mon Sep 17 00:00:00 2001
From: Petr Hodina <phodina@protonmail.com>
Date: Thu, 13 Jan 2022 13:24:23 +0100
Subject: [PATCH v2] gnu: Add dislocker.

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

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 568c2b6b92..072d145c23 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -2198,6 +2198,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")
-- 
2.38.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#59758: [PATCH] gnu: Add dislocker.
  2023-01-09  0:00     ` phodina via Guix-patches via
@ 2023-01-12 22:33       ` Ludovic Courtès
  0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2023-01-12 22:33 UTC (permalink / raw)
  To: phodina; +Cc: 59758-done

phodina <phodina@protonmail.com> skribis:

> From 0c4e34470490f4e4e1c3ee9f7239d0ce09fea81a Mon Sep 17 00:00:00 2001
> From: Petr Hodina <phodina@protonmail.com>
> Date: Thu, 13 Jan 2022 13:24:23 +0100
> Subject: [PATCH v2] gnu: Add dislocker.
>
> * gnu/packages/linux.scm (dislocker): New variable.

Applied, thanks!




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-01-12 22:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-02  4:52 [bug#59758] [PATCH] gnu: Add dislocker phodina via Guix-patches via
2023-01-08 11:10 ` Ludovic Courtès
2023-01-08 23:57   ` phodina via Guix-patches via
2023-01-09  0:00     ` phodina via Guix-patches via
2023-01-12 22:33       ` bug#59758: " Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).