96d3032ea0
svn path=/nixpkgs/trunk/; revision=18510
39 lines
1.3 KiB
Nix
39 lines
1.3 KiB
Nix
{ fetchurl, stdenv, pkgconfig, gtk, gettext, bzip2, zlib
|
|
, libjpeg, libtiff, cfitsio, exiv2, lcms, gtkimageview }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ufraw-0.16";
|
|
|
|
src = fetchurl {
|
|
# XXX: These guys appear to mutate uploaded tarballs!
|
|
url = "mirror://sourceforge/ufraw/${name}.tar.gz";
|
|
sha256 = "06fzyd7wyv5ixbmhbsz80pphhbic18d1w8ji0gz38aq1vdmgxw9n";
|
|
};
|
|
|
|
buildInputs =
|
|
[ pkgconfig gtk gtkimageview gettext bzip2 zlib
|
|
libjpeg libtiff cfitsio exiv2 lcms
|
|
];
|
|
|
|
meta = {
|
|
homepage = http://ufraw.sourceforge.net/;
|
|
|
|
description = "UFRaw, a utility to read and manipulate raw images from digital cameras";
|
|
|
|
longDescription =
|
|
'' The Unidentified Flying Raw (UFRaw) is a utility to read and
|
|
manipulate raw images from digital cameras. It can be used on its
|
|
own or as a Gimp plug-in. It reads raw images using Dave Coffin's
|
|
raw conversion utility - DCRaw. UFRaw supports color management
|
|
workflow based on Little CMS, allowing the user to apply ICC color
|
|
profiles. For Nikon users UFRaw has the advantage that it can read
|
|
the camera's tone curves.
|
|
'';
|
|
|
|
license = "GPLv2+";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
platforms = stdenv.lib.platforms.gnu; # needs GTK+
|
|
};
|
|
}
|