diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2019-11-18 22:48:53 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2019-11-18 22:48:53 +0300 |
| commit | f730e14f6e78336cc85e9b4b3f06b0e948fe63c1 (patch) | |
| tree | 5365e3e3fc86906d53d8ef39bb4399ce184344c9 | |
| parent | gnu: Add with. (diff) | |
| download | guix-wigust-f730e14f6e78336cc85e9b4b3f06b0e948fe63c1.tar.gz | |
guix: Add quickwall.
* guix/wigust/packages/python.scm (quickwall): New variable.
| -rw-r--r-- | guix/wigust/packages/python.scm | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/guix/wigust/packages/python.scm b/guix/wigust/packages/python.scm index e416dda..514ea38 100644 --- a/guix/wigust/packages/python.scm +++ b/guix/wigust/packages/python.scm @@ -436,4 +436,29 @@ your use complies with the LyricWikia terms of service.") (description "This package provides a command line interface to Spotify") (license license:gpl3+))) - +(define-public quickwall + (package + (name "quickwall") + (version "0.0.1-4") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/deepjyoti30/QuickWall.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1pf4nnvvnn8gkks26m09hs6rm1bphlihq3671xdg6n0x2jgk7sgf")))) + (propagated-inputs + `(("python-requests" ,python-requests))) + (arguments + '(#:phases + (modify-phases %standard-phases + (add-before 'install 'set-HOME + (lambda _ + (setenv "HOME" "/tmp")))))) + (build-system python-build-system) + (home-page "https://github.com/deepjyoti30/QuickWall/") + (synopsis "Quickly set wallpapers from CLI directly from Unsplash") + (description "Quickly set wallpapers from CLI directly from Unsplash") + (license license:expat))) |
