Open wdkrnls opened 2 years ago
FYI, unlike a lot of other tools I have tried, yours seemed quite easy to package into Guix. Thanks for keeping things simple!
(define-public repofs
(package
(name "repofs")
(version "v0.2.6")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/AUEB-BALab/RepoFS")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1cy4sn42d6q02kx29hrdlimq17phpk0rzp94n5wvlmvw6393xpwh"))))
(build-system python-build-system)
(inputs
(list python-pygit2 python-fusepy))
(home-page "https://github.com/AUEB-BALab/RepoFS")
(synopsis
"Virtual File Server for exploring a Git repository.")
(description
"RepoFS represents the Git version control system as a virtual file system where
all commits and their contents can be traversed concurrently in a read-only manner
using shell commands.")
(license license:asl2.0)))
Hi,
I thought your tool could be useful for probing into the guix codebase.
I am seeing the following traceback vhen I tried to look at the working tree under tag
v0.1
:P.S. - I really like the idea of this tool. Thanks for offering it to the world.