A lot of these changes are for Guix not Nix, however, nix still works on the laptop so I'm going to reset the changes on the desktop to this commit so that Nix might work there for Camp.
20 lines
459 B
Scheme
20 lines
459 B
Scheme
|
|
|
|
(define-module (pkgs kdenlive)
|
|
#:use-module (guix packages)
|
|
#:use-module (guix build-system qt)
|
|
#:use-module (gnu packages)
|
|
#:use-module (gnu packages kde)
|
|
#:use-module (gnu packages kde-frameworks)
|
|
#:use-module (guix gexp))
|
|
|
|
(define-public kdenlive-fix
|
|
(package
|
|
(inherit kdenlive)
|
|
(name "kdenlive-fix")
|
|
(inputs (modify-inputs
|
|
(package-inputs kdenlive)
|
|
(append kirigami kirigami-addons)))))
|
|
|
|
kdenlive-fix
|