guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/14: gnu: Add ntfsfix-static.


From: guix-commits
Subject: 02/14: gnu: Add ntfsfix-static.
Date: Tue, 12 Oct 2021 20:56:48 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit f5f1a81f3f00a971404cf64b59d61312c0be08c5
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Mon Oct 11 20:21:24 2021 +0200

    gnu: Add ntfsfix-static.
    
    * gnu/packages/linux.scm (ntfsfix/static): New public variable.
---
 gnu/packages/linux.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 457ca23..3f31d24 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -5967,6 +5967,32 @@ The package provides additional NTFS tools.")
                   ((" -static") " -all-static"))))
             (delete 'install-link))))))))
 
+(define-public ntfsfix/static
+  (package
+    (name "ntfsfix-static")
+    (version (package-version ntfs-3g/static))
+    (source #f)
+    (build-system trivial-build-system)
+    (arguments
+     `(#:modules ((guix build utils))
+       #:builder
+       (begin
+         (use-modules (guix build utils))
+         (let* ((ntfs-3g (assoc-ref %build-inputs "ntfs-3g"))
+                (out     (assoc-ref %outputs "out"))
+                (bin     (string-append out "/bin")))
+           (install-file (string-append ntfs-3g "/bin/ntfsfix") bin)
+           (with-directory-excursion bin
+             (remove-store-references "ntfsfix"))))))
+    (inputs
+     `(("ntfs-3g" ,ntfs-3g/static)))
+    (home-page (package-home-page ntfs-3g/static))
+    (synopsis "Statically linked @command{ntfsfix} from ntfs-3g")
+    (description
+     "This package provides a statically linked @command{ntfsfix} taken
+from the ntfs-3g package.  It is meant to be used in initrds.")
+    (license (package-license ntfs-3g/static))))
+
 (define-public rdma-core
   (package
     (name "rdma-core")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]