From 2948e2182ec5dfd4fdb6d45f620632ae520d1e85 Mon Sep 17 00:00:00 2001 From: jgart Date: Tue, 11 Jun 2024 21:35:28 -0500 Subject: [PATCH] Remove upstreamed lfe --- guixrus/packages/lfe.scm | 47 ---------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 guixrus/packages/lfe.scm diff --git a/guixrus/packages/lfe.scm b/guixrus/packages/lfe.scm deleted file mode 100644 index 5be121d..0000000 --- a/guixrus/packages/lfe.scm +++ /dev/null @@ -1,47 +0,0 @@ -;;; GNU Guix --- Functional package management for GNU -;;; -;;; Copyright © 2022 jgart -;;; This file is not part of GNU Guix. -;;; -;;; GNU Guix is free software; you can redistribute it and/or modify it -;;; under the terms of the GNU General Public License as published by -;;; the Free Software Foundation; either version 3 of the License, or (at -;;; your option) any later version. -;;; -;;; GNU Guix is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of -;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;;; GNU General Public License for more details. -;;; -;;; You should have received a copy of the GNU General Public License -;;; along with GNU Guix. If not, see . - -(define-module (guixrus packages lfe) - #:use-module (guix build-system rebar) - #:use-module (guix download) - #:use-module (guix git-download) - #:use-module ((guix licenses) #:prefix license:) - #:use-module (guix packages) - #:use-module (guix utils) - #:use-module (gnu packages)) - -(define-public lfe - (package - (name "lfe") - (version "2.0.1") - (source (origin - (method url-fetch) - (uri (hexpm-uri "lfe" version)) - (sha256 - (base32 - "17sys90sn2i3lg5sz1sdwx5931rv50jhv15c9k0qccb1vwr9gsn3")))) - (build-system rebar-build-system) - (arguments (list #:tests? #f)) - (synopsis "Lisp Flavoured Erlang") - (description -"@code{lfe}, Lisp Flavoured Erlang, is a lisp syntax front-end to the -Erlang compiler. Code produced with it is compatible with normal Erlang -code. An @code{lfe} evaluator and shell is also included.") - (home-page "https://lfe.io/") - (license license:asl2.0))) - -- 2.45.2