diff options
author | Giacomo Leidi <goodoldpaul@autistici.org> | 2019-12-12 23:21:35 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-12-15 22:54:58 +0100 |
commit | 099ce5d4901706dc2c5be888a5c8cbf8fcd0d576 (patch) | |
tree | ddfc65693c70232e7ba6824d86db01148af90c3f /gnu/packages | |
parent | 5d1601eab5dcc1a9c3a15a6e49f06c65e22c3f84 (diff) | |
download | guix-099ce5d4901706dc2c5be888a5c8cbf8fcd0d576.tar.gz guix-099ce5d4901706dc2c5be888a5c8cbf8fcd0d576.zip |
gnu: Add papirus-icon-theme.
* gnu/packages/gnome-xyz.scm (papirus-icon-theme): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnome-xyz.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index d05bdf0ac0..00ad701ad8 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -213,3 +213,37 @@ It uses ES6 syntax and claims to be more actively maintained than others.") dark elements. It supports GNOME, Unity, Xfce, and Openbox.") (home-page "https://numixproject.github.io") (license license:gpl3+))) + +(define-public papirus-icon-theme + (let ((version "0.0.0") ;; The package does not use semver + (revision "0") + (tag "20191201")) + (package + (name "papirus-icon-theme") + (version (git-version version revision tag)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/PapirusDevelopmentTeam/papirus-icon-theme.git") + (commit tag))) + (sha256 + (base32 + "0lnz1kmz28xh1f4slbsx7ycji5hgszyiyprbf5w5fbjhvi5gzw1h")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (arguments + '(#:tests? #f + #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) + #:phases + (modify-phases %standard-phases + (delete 'bootstrap) + (delete 'configure) + (delete 'build)))) + (native-inputs + `(("gtk+:bin" ,gtk+ "bin"))) + (home-page "https://git.io/papirus-icon-theme") + (synopsis "Fork of Paper icon theme with a lot of new icons and a few extras") + (description "Papirus is a fork of the icon theme Paper with a lot of new icons +and a few extra features.") + (license license:gpl3)))) |