Add package
This commit is contained in:
parent
2651429a64
commit
25085cb8c4
1 changed files with 27 additions and 0 deletions
27
guix.scm
Normal file
27
guix.scm
Normal 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
|
Reference in a new issue