Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Guix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ogs
inf
Guix
Commits
362f496d
Commit
362f496d
authored
9 years ago
by
Ludovic Courtès
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add libchop.
* gnu/packages/backup.scm (libchop): New variable.
parent
b416aadf
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnu/packages/backup.scm
+44
-0
44 additions, 0 deletions
gnu/packages/backup.scm
with
44 additions
and
0 deletions
gnu/packages/backup.scm
+
44
−
0
View file @
362f496d
...
...
@@ -30,9 +30,12 @@ (define-module (gnu packages backup)
#
:use-module
(
gnu
packages
acl
)
#
:use-module
(
gnu
packages
base
)
#
:use-module
(
gnu
packages
compression
)
#
:use-module
(
gnu
packages
databases
)
#
:use-module
(
gnu
packages
dejagnu
)
#
:use-module
(
gnu
packages
glib
)
#
:use-module
(
gnu
packages
gnupg
)
#
:use-module
(
gnu
packages
gperf
)
#
:use-module
(
gnu
packages
guile
)
#
:use-module
(
gnu
packages
linux
)
#
:use-module
(
gnu
packages
mcrypt
)
#
:use-module
(
gnu
packages
nettle
)
...
...
@@ -353,3 +356,44 @@ (define-public attic
changes are stored."
)
(
home-page
"https://attic-backup.org/"
)
(
license
license:bsd-3
)))
(
define-public
libchop
(
package
(
name
"libchop"
)
(
version
"0.5.2"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
string-append
"mirror://savannah/libchop/libchop-"
version
".tar.gz"
))
(
sha256
(
base32
"0fpdyxww41ba52d98blvnf543xvirq1v9xz1i3x1gm9lzlzpmc2g"
))
(
patches
(
list
(
search-patch
"diffutils-gets-undeclared.patch"
)))))
(
build-system
gnu-build-system
)
(
native-inputs
`
((
"guile"
,
guile-2
.
0
)
(
"gperf"
,
gperf
)
(
"pkg-config"
,
pkg-config
)))
(
inputs
`
((
"guile"
,
guile-2
.
0
)
(
"util-linux"
,
util-linux
)
(
"gnutls"
,
gnutls
)
(
"tdb"
,
tdb
)
(
"bdb"
,
bdb
)
(
"gdbm"
,
gdbm
)
(
"libgcrypt"
,
libgcrypt
)
(
"lzo"
,
lzo
)
(
"bzip2"
,
bzip2
)
(
"zlib"
,
zlib
)))
(
home-page
"http://nongnu.org/libchop/"
)
(
synopsis
"Tools & library for data backup and distributed storage"
)
(
description
"Libchop is a set of utilities and library for data backup and
distributed storage. Its main application is @command{chop-backup}, an
encrypted backup program that supports data integrity checks, versioning,
distribution among several sites, selective sharing of stored data, adaptive
compression, and more. The library itself implements storage techniques such
as content-addressable storage, content hash keys, Merkle trees, similarity
detection, and lossless compression."
)
(
license
license:gpl3+
)))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment