gnu: Add oxygen-icons.
* gnu/packages/kde.scm (oxygen-icons): New variable.
This commit is contained in:
		
							parent
							
								
									833fdac028
								
							
						
					
					
						commit
						5c2033f864
					
				
					 1 changed files with 21 additions and 1 deletions
				
			
		| 
						 | 
					@ -17,7 +17,7 @@
 | 
				
			||||||
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 | 
					;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define-module (gnu packages kde)
 | 
					(define-module (gnu packages kde)
 | 
				
			||||||
  #:use-module ((guix licenses) #:select (bsd-2 lgpl2.0+ lgpl2.1 lgpl2.1+))
 | 
					  #:use-module ((guix licenses) #:select (bsd-2 lgpl2.0+ lgpl2.1 lgpl2.1+ lgpl3+))
 | 
				
			||||||
  #:use-module (guix packages)
 | 
					  #:use-module (guix packages)
 | 
				
			||||||
  #:use-module (guix download)
 | 
					  #:use-module (guix download)
 | 
				
			||||||
  #:use-module (guix build-system cmake)
 | 
					  #:use-module (guix build-system cmake)
 | 
				
			||||||
| 
						 | 
					@ -205,3 +205,23 @@ simple interface for implementing plugins for extracting information;
 | 
				
			||||||
calculation of sha1 for every file crawled
 | 
					calculation of sha1 for every file crawled
 | 
				
			||||||
(allows fast finding of duplicates).")
 | 
					(allows fast finding of duplicates).")
 | 
				
			||||||
    (license lgpl2.0+)))
 | 
					    (license lgpl2.0+)))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					(define-public oxygen-icons
 | 
				
			||||||
 | 
					  (package
 | 
				
			||||||
 | 
					    (name "oxygen-icons")
 | 
				
			||||||
 | 
					    (version "4.14.2")
 | 
				
			||||||
 | 
					    (source (origin
 | 
				
			||||||
 | 
					             (method url-fetch)
 | 
				
			||||||
 | 
					             (uri (string-append "http://download.kde.org/stable/" version
 | 
				
			||||||
 | 
					                                "/src/" name "-"
 | 
				
			||||||
 | 
					                                 version ".tar.xz"))
 | 
				
			||||||
 | 
					             (sha256
 | 
				
			||||||
 | 
					              (base32
 | 
				
			||||||
 | 
					               "1mz73f54qh2vd8ibp60f6fjflrprz0lvqfkgh805l7wfhrv4ckbz"))))
 | 
				
			||||||
 | 
					    (build-system cmake-build-system)
 | 
				
			||||||
 | 
					    (arguments
 | 
				
			||||||
 | 
					     `(#:tests? #f)) ; no test target
 | 
				
			||||||
 | 
					    (home-page "http://www.kde.org/")
 | 
				
			||||||
 | 
					    (synopsis "oxygen icon theme for the KDE desktop")
 | 
				
			||||||
 | 
					    (description "KDE desktop environment")
 | 
				
			||||||
 | 
					    (license lgpl3+)))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue