From 342912d4cb9b1dbeaf72c23358f4d3670333551d Mon Sep 17 00:00:00 2001 From: Luis Guilherme Coelho Date: Mon, 5 Feb 2024 21:28:48 -0300 Subject: [PATCH] backup: Delete xmake.scm --- backup/xmake.scm | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 backup/xmake.scm diff --git a/backup/xmake.scm b/backup/xmake.scm deleted file mode 100644 index 2df33ae..0000000 --- a/backup/xmake.scm +++ /dev/null @@ -1,34 +0,0 @@ -(define-module - (xmake)) - -(use-modules - (guix packages) - (gnu packages version-control) - (guix download) - (guix git-download) - (guix build-system gnu) - (guix licenses)) - -(define-public xmake - - (package - (name "xmake") - (version "0.2") - (source - (origin - (method git-fetch) - (uri - ( git-reference - (url "https://github.com/xmake-io/xmake/") - (commit "8545a9301139aa8a778c4b61a1a3b6eaf40385e5"))) - (sha256 - (base32 - "1w38dbcv9frhgvakggdswx051pn5mmg278pp8fi9snxzlv77f1lc")))) - (build-system gnu-build-system) - (synopsis "Hello, GNU world: An example GNU package") - (description - "GNU Hello prints the message \"Hello, world!\" and then exits. It -serves as an example of standard GNU coding practices. As such, it supports -command-line arguments, multiple languages, and so on.") - (home-page "https://www.gnu.org/software/hello/") - (license gpl3+)))