(define-module (ajatt packages audio) #: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)))