~ruther/guix-local

bf6736bd878a14e0520a550bf8fbf8edb69876df — 45mg 1 year, 3 months ago dad964e
gnu: Add fscryptctl.

* gnu/packages/file-systems.scm (fscryptctl): New variable.

Change-Id: I98b0100402307d0f3e0af6d46e0d1abbf7cd59d5
Signed-off-by: Leo Famulari <leo@famulari.name>
1 files changed, 33 insertions(+), 0 deletions(-)

M gnu/packages/file-systems.scm
M gnu/packages/file-systems.scm => gnu/packages/file-systems.scm +33 -0
@@ 86,6 86,7 @@
  #:use-module (gnu packages golang-crypto)
  #:use-module (gnu packages golang-xyz)
  #:use-module (gnu packages guile)
  #:use-module (gnu packages haskell-xyz)
  #:use-module (gnu packages jemalloc)
  #:use-module (gnu packages kerberos)
  #:use-module (gnu packages libevent)


@@ 525,6 526,38 @@ wrapping, PAM integration, and provides a uniform interface for creating and
modifying encrypted directories.")
    (license license:asl2.0)))

(define-public fscryptctl
  (package
    (name "fscryptctl")
    (version "1.2.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/google/fscryptctl")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "15zbmh9jlhqbai7lcaqyvymrjjcdi0l9zli9j51skwap59sq9jz6"))))
    (build-system gnu-build-system)
    (arguments
     (list
      #:make-flags #~(list (string-append "PREFIX=" #$output)
                           (string-append "CC=" #$(cc-for-target)))
      #:tests? #f  ;Test setup requires root
      #:phases
      #~(modify-phases %standard-phases
          ;; No ./configure script
          (delete 'configure))))
    (native-inputs (list pandoc))
    (home-page "https://github.com/google/fscryptctl")
    (synopsis "Small C tool for Linux filesystem encryption")
    (description "@command{fscryptctl} is a low-level tool written in C that
handles raw keys and manages policies for Linux filesystem encryption,
specifically the @code{fscrypt} kernel interface which is supported by the
ext4, f2fs, UBIFS, and CephFS filesystems.")
    (license license:asl2.0)))

(define-public fstransform
  (package
    (name "fstransform")