Add package

This commit is contained in:
TakeV 2024-02-08 10:05:34 -05:00
parent 2651429a64
commit 25085cb8c4
Signed by: TakeV
GPG key ID: A64F41345C7400AF

27
guix.scm Normal file
View file

@ -0,0 +1,27 @@
(define-module (guix-packager)
#:use-module (guix)
#:use-module (guix build-system trivial)
#:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages)
#:use-module (gnu packages gawk)
#:use-module (gnu packages video))
(define-public flight-of-dragons-ooc
(package
(name "flight-of-dragons-ooc")
(version "git")
(source #f)
(native-inputs
(list openshot))
(inputs
(list gawk))
(build-system trivial-build-system)
(home-page "https://www.gnu.org/software/hello/")
(synopsis "Flight of Dragons out of context")
(description "Flight of Dragons out of context")
(license license:gpl3+)))
;; This allows you to run guix shell -f example.scm.
;; Remove this line if you just want to define a package.
flight-of-dragons-ooc