ajattix/ajatt/packages/audio.scm

56 lines
1.9 KiB
Scheme
Raw Normal View History

2024-02-19 01:19:51 +00:00
(define-module (ajatt packages audio)
2024-02-18 02:43:07 +00:00
#:use-module (gnu packages video)
#:use-module (guix build-system copy)
#:use-module (guix git-download)
2024-03-22 22:09:58 +00:00
#:use-module (guix download)
2024-02-18 02:43:07 +00:00
#:use-module (guix packages)
#:use-module (guix gexp)
#:use-module ((guix licenses) #:prefix license:))
2024-03-22 22:09:58 +00:00
(define-public navidrome-bin
(package
(name "navidrome-bin")
(version "0.51.1")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/navidrome/navidrome/releases/download/v"
version "/navidrome_" version "_linux_amd64.tar.gz"))
(sha256 "0s7p3nfk9qfv8agjajpn438l1hcfl5w2i4s1c8a0d6679xw2nckl")))
(build-system copy-build-system)
(supported-systems '("x86_64-linux"))
(arguments
`(#:install-plan '(("navidrome" "bin/"))))
(synopsis "ModNavidrome is an open source web-based music collection server and streamer. It gives you freedom to listen to your music collection from any browser or mobile device. It's like your personal Spotify!")
(description "Modern Music Server and Streamer compatible with Subsonic/Airsonic.")
(home-page "https://github.com/navidrome/navidrome")
(license license:gpl3)))
2024-02-18 02:43:07 +00:00
(define-public impd
(package
2024-03-22 22:09:58 +00:00
(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"))))
2024-02-18 02:43:07 +00:00
(build-system copy-build-system)
(arguments
2024-02-19 01:19:51 +00:00
(list #:install-plan
#~'(("impd" "bin/"))))
2024-02-18 02:43:07 +00:00
(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)))
2024-03-22 22:09:58 +00:00
navidrome-bin