all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#52409] [PATCH] gnu: Add sfm.
@ 2021-12-10  6:47 Nikolay Korotkiy
  2021-12-10 22:37 ` bug#52409: " Nicolas Goaziou
  0 siblings, 1 reply; 2+ messages in thread
From: Nikolay Korotkiy @ 2021-12-10  6:47 UTC (permalink / raw)
  To: 52409; +Cc: Nikolay Korotkiy

* gnu/packages/suckless.scm (sfm): New variable.
---
 gnu/packages/suckless.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm
index efa5c023c0..2efb6e6d1e 100644
--- a/gnu/packages/suckless.scm
+++ b/gnu/packages/suckless.scm
@@ -10,6 +10,7 @@
 ;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
 ;;; Copyright © 2021 Alexandru-Sergiu Marton <brown121407@posteo.ro>
+;;; Copyright © 2021 Nikolay Korotkiy <sikmir@disroot.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -963,3 +964,33 @@ (define-public scron
 Single daemon and configuration file.  Log to stdout or syslog.  No mail
 support.")
     (license license:expat)))
+
+(define-public sfm
+  (package
+    (name "sfm")
+    (version "0.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri
+        (git-reference
+         (url "git://git.afify.dev/sfm.git")
+         (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "0g6k884mggryld0k054sjcj6kpkbca9cvr50w98klszym73yw0sp"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f                      ; no check target
+       #:make-flags
+       (list (string-append "CC=" ,(cc-for-target))
+             (string-append "PREFIX=" %output))
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure)))) ; no configure script
+    (synopsis "Simple file manager")
+    (home-page "https://github.com/afify/sfm")
+    (description
+     "sfm is a simple file manager for unix-like systems.")
+    (license license:isc)))
-- 
2.34.0





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#52409: [PATCH] gnu: Add sfm.
  2021-12-10  6:47 [bug#52409] [PATCH] gnu: Add sfm Nikolay Korotkiy
@ 2021-12-10 22:37 ` Nicolas Goaziou
  0 siblings, 0 replies; 2+ messages in thread
From: Nicolas Goaziou @ 2021-12-10 22:37 UTC (permalink / raw)
  To: Nikolay Korotkiy; +Cc: 52409-done

Hello,

Nikolay Korotkiy <sikmir@gmail.com> writes:

> * gnu/packages/suckless.scm (sfm): New variable.

Applied. Thank you.

Regards,
-- 
Nicolas Goaziou




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-12-10 22:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-10  6:47 [bug#52409] [PATCH] gnu: Add sfm Nikolay Korotkiy
2021-12-10 22:37 ` bug#52409: " Nicolas Goaziou

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.