diff options
Diffstat (limited to 'gn/packages')
| -rw-r--r-- | gn/packages/bioinformatics.scm | 4 | ||||
| -rw-r--r-- | gn/packages/file-systems.scm | 31 |
2 files changed, 33 insertions, 2 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm index fb2ee18..f7b70e2 100644 --- a/gn/packages/bioinformatics.scm +++ b/gn/packages/bioinformatics.scm @@ -1814,14 +1814,14 @@ dictionaries to record a queryable version of the graph.") (define-public smoothxg (package (name "smoothxg") - (version "0.8.0") + (version "0.8.2") (source (origin (method url-fetch) (uri (string-append "https://github.com/pangenome/smoothxg" "/releases/download/v" version "/smoothxg-v" version ".tar.gz")) (sha256 - (base32 "1gl4dskj81hlma7wsjrwwg77hgzk7dc9iaqqnf2wzrf2f4ll1cdj")) + (base32 "1hqaa6l904zl01rsmw5vzx2kvcncl97i5kln850snywyv33skxp6")) (snippet #~(begin (use-modules (guix build utils)) diff --git a/gn/packages/file-systems.scm b/gn/packages/file-systems.scm index bf92ed9..1610a76 100644 --- a/gn/packages/file-systems.scm +++ b/gn/packages/file-systems.scm @@ -5,6 +5,10 @@ #:use-module (guix git-download) #:use-module (guix utils) #:use-module (guix build-system cmake) + #:use-module (guix build-system gnu) + #:use-module (gnu packages admin) + #:use-module (gnu packages autotools) + #:use-module (gnu packages base) #:use-module (gnu packages boost) #:use-module (gnu packages check) #:use-module (gnu packages compression) @@ -15,6 +19,33 @@ #:use-module (gnu packages pkg-config) #:use-module (gnu packages python)) +(define-public moosefs + (package + (name "moosefs") + (version "4.58.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moosefs/moosefs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "163x7ziamqy79xaiy5fhr8afbj65ssnyqki5v6wxanciwczw4jcl")))) + (build-system gnu-build-system) + (inputs + (list + autoconf automake fuse libpcap zlib python libtool)) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "https://moosefs.com/") + (synopsis "Distributed, scalable, fault-tolerant, highly available file system") + (description + "MooseFS is a Petabyte Open Source Network Distributed File System. It is easy to deploy and maintain, highly reliable, fault tolerant, highly performing, easily scalable and POSIX compliant.") + (license (list license:asl2.0 ; external/crcutil + license:gpl2+)))) + (define-public lizardfs (package (name "lizardfs") |
