From 25085cb8c4bd1869e735741f5f978faae27cc302 Mon Sep 17 00:00:00 2001 From: TakeV Date: Thu, 8 Feb 2024 10:05:34 -0500 Subject: [PATCH] Add package --- guix.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 guix.scm diff --git a/guix.scm b/guix.scm new file mode 100644 index 0000000..c0ec1c1 --- /dev/null +++ b/guix.scm @@ -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