Advertisement
Guest User

Untitled

a guest
Feb 17th, 2024
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 1.32 KB | None | 0 0
  1. (define-module (nwg-look-module)
  2.   #:use-module (guix)
  3.   #:use-module (guix utils)
  4.   #:use-module (guix build-system gnu)
  5.   #:use-module (guix build utils)
  6.   #:use-module (guix git-download)
  7.   #:use-module ((guix licenses) #:prefix license:)
  8.   #:use-module (gnu packages)
  9.   #:use-module (gnu packages gtk)
  10.   #:use-module (gnu packages xorg)
  11.   #:use-module (gnu packages golang))
  12.  
  13. (define-public nwg-look
  14.   (package
  15.     (name "nwg-look")
  16.     (version "0.2.7")
  17.     (source
  18.       (origin
  19.         (method url-fetch)
  20.         (uri "https://github.com/nwg-piotr/nwg-look/releases/download/v0.2.7/nwg-look-v0.2.7_x86_64.tar.gz")
  21.         (sha256 (base32 "094795qmzrl8l6dg8l515lca4h9q5kqa8nimkxkf2xv4785pl7l3"))))
  22.     (native-inputs
  23.      (list go-1.21))
  24.     (inputs
  25.      (list gtk+ xcur2png))
  26.     (build-system gnu-build-system)
  27.     (arguments (list #:tests? #f
  28.                      #:phases (modify-phases %standard-phases
  29.                                 (delete 'configure))
  30.                      #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))))
  31.     (home-page "https://github.com/nwg-piotr/nwg-look")
  32.     (synopsis "A GTK3 settings editor.")
  33.     (description "Nwg-look is a GTK3 settings editor, designed to work properly in wlroots-based Wayland environment.")
  34.     (license license:expat)))
  35.  
  36. nwg-look
  37.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement