[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#73394] [PATCH] gnu: Add activate-linux-1.1.0.
From: |
Sisiutl |
Subject: |
[bug#73394] [PATCH] gnu: Add activate-linux-1.1.0. |
Date: |
Fri, 20 Sep 2024 22:31:59 +0200 |
* gnu/packages/toys.scm (activate-linux): New variable.
Change-Id: Ib3ac7fcf8c5e710670a4a44f7183e068e180852f
---
gnu/packages/toys.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm
index a88b827704..170f40c17a 100644
--- a/gnu/packages/toys.scm
+++ b/gnu/packages/toys.scm
@@ -140,2 +140,2 @@ (define-public fortunes-jkirchartz
display via @command{fortune}, drawn from sources all around the world.")
(license license:unlicense))))
+(define-public activate-linux
+ (package
+ (name "activate-linux")
+ (version "1.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+
"https://github.com/MrGlockenspiel/activate-linux/archive/refs/tags/v"
+ version ".tar.gz"))
+ (sha256
+ (base32 "0vbq4skm2jy2lri9v8qdjk2cfvq6lxx205bpfxph5xkvln82r2fg"))))
+ (build-system gnu-build-system)
+ (home-page "https://github.com/MrGlockenspiel/activate-linux")
+ (synopsis "The \"Activate Windows\" watermark ported to Linux")
+ (description "The \"Activate Windows\" watermark ported to Linux.")
+ (native-inputs (list pkg-config
+ cairo
+ wayland
+ wayland-protocols
+ libxi
+ libx11
+ xorgproto
+ libxt
+ libxfixes
+ libxinerama
+ libxrandr))
+ (arguments
+ '(#:make-flags (list (string-append "CC="
+ (cc-for-target)))
+ #:tests? #f ;no check target
+ #:phases (modify-phases %standard-phases
+ (delete 'configure))))
+ (license license:gpl3+)))
+
(define-public lolcat
(package
(name "lolcat")
--
2.46.0
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [bug#73394] [PATCH] gnu: Add activate-linux-1.1.0.,
Sisiutl <=