summary refs log tree commit diff
path: root/pkgs/applications/graphics/exrtools/default.nix
blob: 1985176765f0bcb6cc43c5c57f28c5e02e2757a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenv, fetchurl, pkg-config, openexr, libpng12, libjpeg }:

stdenv.mkDerivation rec {
  pname = "exrtools";
  version = "0.4";

  src = fetchurl {
    url =  "http://scanline.ca/exrtools/${pname}-${version}.tar.gz";
    sha256 = "0jpkskqs1yjiighab4s91jy0c0qxcscwadfn94xy2mm2bx2qwp4z";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ stdenv openexr libpng12 libjpeg ];

  meta = with lib; {
    description = "Collection of utilities for manipulating OpenEXR images";
    homepage = "http://scanline.ca/exrtools";
    platforms = platforms.linux;
    license = licenses.mit;
    maintainers = [ maintainers.juliendehos ];
  };
}