GNU bug report logs - #66801
[PATCH] mix-build-system: draft 1

Previous Next

Package: guix-patches;

Reported by: Pierre-Henry Fröhring <phfrohring <at> deeplinks.com>

Date: Sat, 28 Oct 2023 20:21:02 UTC

Severity: normal

Tags: patch

Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: Pierre-Henry Fröhring <contact <at> phfrohring.com>
Cc: 66801 <at> debbugs.gnu.org
Subject: [bug#66801] [PATCH v3 07/15] gnu: Add elixir-file-system.
Date: Fri, 08 Dec 2023 16:33:12 +0100
Am Freitag, dem 08.12.2023 um 16:03 +0100 schrieb Pierre-Henry
Fröhring:
> From: Pierre-Henry Fröhring <phfrohring <at> deeplinks.com>
> 
> * gnu/packages/elixir-xyz.scm (elixir-file-system): New variable.
> 
> Change-Id: I54e9c9069ddf150bb0c882775b0b2c9d5e59abd6
> ---
>  gnu/packages/elixir-xyz.scm | 27 +++++++++++++++++++++++++++
>  1 file changed, 27 insertions(+)
> 
> diff --git a/gnu/packages/elixir-xyz.scm b/gnu/packages/elixir-
> xyz.scm
> index 544a414b4..bed84e9f2 100644
> --- a/gnu/packages/elixir-xyz.scm
> +++ b/gnu/packages/elixir-xyz.scm
> @@ -98,6 +98,33 @@ (define-public elixir-jason
>      (home-page "https://hexdocs.pm/jason/")
>      (license license:asl2.0)))
>  
> +(define-public elixir-file-system
> +  (package
> +    (name "elixir-file-system")
> +    (version "0.2.10")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (hexpm-uri name version))
> +       (sha256
> +        (base32
> "1p0myxmnjjds8bbg69dd6fvhk8q3n7lb78zd4qvmjajnzgdmw6a1"))))
> +    (build-system mix-build-system)
> +    (propagated-inputs (list inotify-tools))
By convention, arguments follow build-system, only thereafter come
inputs.
> +    (arguments
> +     (list
> +      #:tests? #f ;There is no test/ in the source.
> +      #:phases #~(modify-phases %standard-phases
> +                   (add-after 'unpack 'rm-priv
> +                     (lambda _
> +                       ;; This directory represents source code not
> needed on UNIX systems.
> +                       ;; Since we aim at UNIX systems, it is
> deleted.
> +                       (delete-file-recursively "priv"))))))
Is this bundled or non-free source?  If so, delete it in a snippet.
> +    (synopsis "File system change watcher")
> +    (description "Provides a file system change watcher wrapper
> based on
> +[fs](https://github.com/synrc/fs).")
> +    (home-page "https://hexdocs.pm/file_system/")
> +    (license license:wtfpl2)))
> +
Cheers

This bug report was last modified 1 year and 249 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.