packages: audio: Add impd
This commit is contained in:
parent
a2bcbcef94
commit
bfaf634992
31
ajatt/packages/audio.scm
Normal file
31
ajatt/packages/audio.scm
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
(define-module (ajatt packages video)
|
||||||
|
#:use-module (gnu packages video)
|
||||||
|
#:use-module (guix build-system copy)
|
||||||
|
#:use-module (guix git-download)
|
||||||
|
#:use-module (guix packages)
|
||||||
|
#:use-module (guix gexp)
|
||||||
|
#:use-module ((guix licenses) #:prefix license:))
|
||||||
|
|
||||||
|
(define-public impd
|
||||||
|
(package
|
||||||
|
(name "impd")
|
||||||
|
(version "0.8")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri
|
||||||
|
(git-reference
|
||||||
|
(url "https://github.com/Ajatt-Tools/impd.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(sha256
|
||||||
|
(base32 "1wxmc628jh3prxrwbca4cdhfa58birdxr2nh76k11j1cjw939hzg"))))
|
||||||
|
(build-system copy-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:install-plan #~'(("impd" "bin/"))))
|
||||||
|
(inputs (list ffmpeg))
|
||||||
|
(home-page "https://github.com/Ajatt-Tools/impd")
|
||||||
|
(synopsis "AJATT-style passive listening and condensed audio without bloat.")
|
||||||
|
(description "AJATT-style passive listening and condensed audio without bloat.")
|
||||||
|
(license license:gpl3)))
|
||||||
|
|
||||||
|
impd
|
Loading…
Reference in a new issue