blob: b744d3756eb8f2fc324592f269fc19be3bede176 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
(define-module (xyz euandreh latest)
#:use-module (guix git-download)
#:use-module (guix packages)
#:use-module (gnu packages bittorrent))
(define-public mktorrent-latest
(package
(inherit mktorrent)
(name "mktorrent-latest")
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/Rudde/mktorrent")
(commit "de7d011b35458de1472665f50b96c9cf6c303f39")))
(sha256
(base32 "1gsky1ijxrfsw07lvfjw4annjkdfpmnp8nnddi1wakbzqn6v5dwq"))))))
(list
mktorrent-latest)
|