gnu: Add libraw.

* gnu/packages/photo.scm (libraw): New variable.
master
Ricardo Wurmus 2015-09-01 21:36:32 +02:00
parent 240f2785c0
commit d9cef6128c
1 changed files with 20 additions and 0 deletions

View File

@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
;;;
;;; This file is part of GNU Guix.
;;;
@ -30,6 +31,25 @@
#:use-module (gnu packages perl)
#:use-module (gnu packages base))
(define-public libraw
(package
(name "libraw")
(version "0.17.0")
(source (origin
(method url-fetch)
(uri (string-append "http://www.libraw.org/data/LibRaw-"
version ".tar.gz"))
(sha256
(base32
"043kckxjqanw8dl3m9f6kvsf0l20ywxmgxd1xb0slj6m8l4w4hz6"))))
(build-system gnu-build-system)
(home-page "http://www.libraw.org")
(synopsis "Raw image decoder")
(description
"LibRaw is a library for reading RAW files obtained from digital photo
cameras (CRW/CR2, NEF, RAF, DNG, and others).")
(license lgpl2.1+)))
(define-public libexif
(package
(name "libexif")