27 lines
836 B
Scheme
27 lines
836 B
Scheme
(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
|