GNU bug report logs - #65011
[PATCH] gnu: Add xwinwrap.

Previous Next

Package: guix-patches;

Reported by: Sergio Pastor Pérez <sergio.pastorperez <at> outlook.es>

Date: Wed, 2 Aug 2023 11:08:01 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Sergio Pastor Pérez <sergio.pastorperez <at> outlook.es>
To: 65011 <at> debbugs.gnu.org
Cc: Sergio Pastor Pérez <sergio.pastorperez <at> outlook.es>
Subject: [bug#65011] [PATCH v1] gnu: Add xwinwrap.
Date: Tue,  5 Sep 2023 19:07:03 +0200
* gnu/packages/xdisorg.scm (xwinwrap): New variable.
---
Good evening Jean Pierre.

Here you hace the revised patch.

Excuse me for the late reply. Greetings.

 gnu/packages/xdisorg.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index da5ca76e10..da1bc16551 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -3301,6 +3301,43 @@ (define-public jumpapp
     (home-page "https://github.com/mkropat/jumpapp")
     (license license:expat)))
 
+(define-public xwinwrap
+  (let ((revision "0")
+        (commit "ec32e9b72539de7e1553a4f70345166107b431f7"))
+    (package
+      (name "xwinwrap")
+      (version (git-version "0.0.0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/r00tdaemon/xwinwrap")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "0l3ng6w8jl9mryk5nx61qpd1bv5yqm7cnwy2s3vcy88n04ggbap9"))))
+      (build-system gnu-build-system)
+      (inputs (list libx11 libxrender libxext))
+      (arguments
+       (list #:tests? #f ; No tests.
+             #:phases #~(modify-phases %standard-phases
+                          (add-after 'unpack 'fix-hardcoded-paths
+                            (lambda _
+                              (substitute* "Makefile"
+                                (("/usr/local")
+                                 %output))))
+                          (delete 'configure)
+                          (add-before 'install 'create-missing-dirs
+                            (lambda _
+                              (mkdir-p (string-append #$output "/bin")))))))
+      (home-page "https://github.com/r00tdaemon/xwinwrap")
+      (synopsis
+       "X utility that allows sticking most of apps to a desktop background")
+      (description
+       "Fork of xwinwrap.  Xwinwrap allows you to stick most of the apps to
+your desktop background.")
+      (license license:gpl3+))))
+
 (define-public xkbset
   (package
     (name "xkbset")

base-commit: 3d58f22c053388f7805d9cc462d2b18fb28798da
-- 
2.39.2





This bug report was last modified 82 days ago.

Previous Next


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