break inexistence of this

This commit is contained in:
Kimapr 2025-04-11 14:15:26 +05:00
commit ba6eee3d16
Signed by: kimapr
GPG key ID: 9F631B9803377CE4
4 changed files with 56 additions and 0 deletions

4
.guix-authorizations Normal file
View file

@ -0,0 +1,4 @@
(authorizations (version 0)
(("8D5B 14D2 CBB5 431F C0A8 9F5F 9F63 1B98 0337 7CE4" (name
"kimapr"))))

8
.guix-channel Normal file
View file

@ -0,0 +1,8 @@
;; This is a Guix channel.
(channel
(version 0)
;; Nothing Ever Happens ;; (news-file '())
;; WHAT THE FUCK IS A KEYRING 🔓️🔓️🔓️🔥🔥 ;; (keyring-reference '())
(url "https://git.kimapr.net/kimapr/klh-guix.git"))
; ^ the primary URL is actually inside my computer but you can't download from there so

11
README.md Normal file
View file

@ -0,0 +1,11 @@
# Kimapr's Awful Packages
if you load this into your systejm it wont like this probably
## what does "klh" mean
i forgor
# License:

33
kimapr/packages/misc.scm Normal file
View file

@ -0,0 +1,33 @@
(define-module (kimapr packages misc)
#:use-module (guix gexp)
#:use-module (guix utils)
#:use-module (gnu packages lua)
#:use-module (gnu packages video)
#:use-module (gnu packages audio)
#:use-module (guix packages)
#:export (lua ffmpeg mpv))
(define-public lua
(package
(inherit lua-5.4)
(arguments
(substitute-keyword-arguments (package-arguments lua-5.4)
((#:make-flags flags)
(append (list-head flags
(- (length flags) 1))
'("linux-readline")))))))
(define-public ffmpeg
(package
(inherit ffmpeg)
(arguments
(substitute-keyword-arguments (package-arguments ffmpeg)
((#:configure-flags flags)
#~(cons* "--enable-libopenmpt"
#$flags))))
(inputs (modify-inputs (package-inputs ffmpeg)
(prepend libopenmpt)))))
(define-public mpv
((package-input-rewriting `((,ffmpeg unquote ffmpeg-mod)))
mpv))