guix-commits
[Top][All Lists]
Advanced

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

05/08: gnu: fsarchiver: Move to (gnu packages file-systems).


From: guix-commits
Subject: 05/08: gnu: fsarchiver: Move to (gnu packages file-systems).
Date: Tue, 12 May 2020 18:25:01 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit c341b2addd29de5a04938987d55f319cfad81e96
Author: Tobias Geerinckx-Rice <address@hidden>
AuthorDate: Sun May 10 23:19:52 2020 +0200

    gnu: fsarchiver: Move to (gnu packages file-systems).
    
    * gnu/packages/disk.scm (fsarchiver): Move this variable…
    * gnu/packages/file-systems.scm (fsarchiver): …here.
---
 gnu/packages/disk.scm         | 36 ------------------------------------
 gnu/packages/file-systems.scm | 38 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+), 36 deletions(-)

diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm
index 15f0877..5c82ccd 100644
--- a/gnu/packages/disk.scm
+++ b/gnu/packages/disk.scm
@@ -87,42 +87,6 @@
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages))
 
-(define-public fsarchiver
-  (package
-    (name "fsarchiver")
-    (version "0.8.5")
-    (source
-     (origin
-       (method git-fetch)
-       (uri
-        (git-reference
-         (url "https://github.com/fdupoux/fsarchiver.git";)
-         (commit version)))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "1rvwq5v3rl14bqxjm1ibfapyicf0sa44nw7451v10kx39lp56ylp"))))
-    (build-system gnu-build-system)
-    (native-inputs
-     `(("autoconf" ,autoconf)
-       ("automake" ,automake)
-       ("pkg-config" ,pkg-config)))
-    (inputs
-     `(("bzip2" ,bzip2)
-       ("e2fsprogs" ,e2fsprogs)
-       ("libgcrypt" ,libgcrypt)
-       ("lz4" ,lz4)
-       ("lzo" ,lzo)
-       ("util-linux" ,util-linux "lib")
-       ("xz" ,xz)
-       ("zlib" ,zlib)
-       ("zstd:lib" ,zstd "lib")))
-    (synopsis "Filesystem Backup/Deployment Tool")
-    (description "FSArchiver allows you to save the contents of a file-system 
to
-a compressed archive file.  The file-system can be restored on a partition 
which
-has a different size and it can be restored on a different file-system.")
-    (home-page "http://www.fsarchiver.org/";)
-    (license license:gpl2)))
-
 (define-public udevil
   (package
     (name "udevil")
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm
index 1ecc416..8ac5447 100644
--- a/gnu/packages/file-systems.scm
+++ b/gnu/packages/file-systems.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2017, 2018 Ricardo Wurmus <address@hidden>
 ;;; Copyright © 2018 Leo Famulari <address@hidden>
 ;;; Copyright © 2019, 2020 Efraim Flashner <address@hidden>
+;;; Copyright © 2020 Raghav Gururajan <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -44,6 +45,7 @@
   #:use-module (gnu packages docbook)
   #:use-module (gnu packages flex)
   #:use-module (gnu packages glib)
+  #:use-module (gnu packages gnupg)
   #:use-module (gnu packages libffi)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages nfs)
@@ -57,6 +59,42 @@
   #:use-module (gnu packages valgrind)
   #:use-module (gnu packages xml))
 
+(define-public fsarchiver
+  (package
+    (name "fsarchiver")
+    (version "0.8.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri
+        (git-reference
+         (url "https://github.com/fdupoux/fsarchiver.git";)
+         (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1rvwq5v3rl14bqxjm1ibfapyicf0sa44nw7451v10kx39lp56ylp"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("bzip2" ,bzip2)
+       ("e2fsprogs" ,e2fsprogs)
+       ("libgcrypt" ,libgcrypt)
+       ("lz4" ,lz4)
+       ("lzo" ,lzo)
+       ("util-linux" ,util-linux "lib")
+       ("xz" ,xz)
+       ("zlib" ,zlib)
+       ("zstd:lib" ,zstd "lib")))
+    (synopsis "Filesystem Backup/Deployment Tool")
+    (description "FSArchiver allows you to save the contents of a file-system 
to
+a compressed archive file.  The file-system can be restored on a partition 
which
+has a different size and it can be restored on a different file-system.")
+    (home-page "http://www.fsarchiver.org/";)
+    (license license:gpl2)))
+
 (define-public gphotofs
   (package
     (name "gphotofs")



reply via email to

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