rekado pushed a commit to branch master
in repository guix.

commit d9cef6128cd0b632fcb60eed0a29b9324abd97fc
Author: Ricardo Wurmus <[email protected]>
Date:   Tue Sep 1 21:36:32 2015 +0200

    gnu: Add libraw.
    
    * gnu/packages/photo.scm (libraw): New variable.
---
 gnu/packages/photo.scm |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/photo.scm b/gnu/packages/photo.scm
index bf3c76c..cbfc1e8 100644
--- a/gnu/packages/photo.scm
+++ b/gnu/packages/photo.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2014, 2015 Ludovic Courtès <[email protected]>
+;;; Copyright © 2015 Ricardo Wurmus <[email protected]>
 ;;;
 ;;; 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")

Reply via email to