guix-commits
[Top][All Lists]
Advanced

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

01/01: file-systems: Provide string->ext*-uuid, string->btrfs-uuid.


From: Danny Milosavljevic
Subject: 01/01: file-systems: Provide string->ext*-uuid, string->btrfs-uuid.
Date: Sat, 10 Jun 2017 13:22:17 -0400 (EDT)

dannym pushed a commit to branch master
in repository guix.

commit a81cae38ca061bea744783c2ccc5b3592840ab22
Author: Danny Milosavljevic <address@hidden>
Date:   Fri Jun 9 20:42:12 2017 +0200

    file-systems: Provide string->ext*-uuid, string->btrfs-uuid.
    
    * gnu/build/file-systems.scm (string->ext2-uuid, string->ext3-uuid,
    string->ext4-uuid, string->btrfs-uuid): New variables.  Export them.
---
 gnu/build/file-systems.scm | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm
index 1c733f4..08f7d47 100644
--- a/gnu/build/file-systems.scm
+++ b/gnu/build/file-systems.scm
@@ -44,6 +44,10 @@
             uuid->string
             string->uuid
             string->iso9660-uuid
+            string->ext2-uuid
+            string->ext3-uuid
+            string->ext4-uuid
+            string->btrfs-uuid
 
             bind-mount
 
@@ -552,6 +556,11 @@ UUID representation."
                      (time-low 4) (time-mid 2) (time-hi 2)
                      (clock-seq 2) (node 6)))))))
 
+(define string->ext2-uuid string->uuid)
+(define string->ext3-uuid string->uuid)
+(define string->ext4-uuid string->uuid)
+(define string->btrfs-uuid string->uuid)
+
 
 (define* (canonicalize-device-spec spec #:optional (title 'any))
   "Return the device name corresponding to SPEC.  TITLE is a symbol, one of



reply via email to

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