packages: audio: Add impd

This commit is contained in:
Luis Guilherme Coelho 2024-02-17 23:43:07 -03:00
parent a2bcbcef94
commit bfaf634992
Signed by: anemofilia
GPG key ID: 1F2E76ACE3F531C8

31
ajatt/packages/audio.scm Normal file
View 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