Skip to content

Commit

Permalink
Merge pull request #17151 from juliendehos/exrtools
Browse files Browse the repository at this point in the history
exrtools: init at 0.4
  • Loading branch information
dezgeg committed Jul 22, 2016
2 parents 0d7da21 + d6ff1ce commit e5d048a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/applications/graphics/exrtools/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ stdenv, fetchurl, pkgconfig, openexr, libpng12, libjpeg }:

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

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

buildInputs = [ stdenv pkgconfig openexr libpng12 libjpeg ];

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

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12888,6 +12888,8 @@ in

exrdisplay = callPackage ../applications/graphics/exrdisplay { };

exrtools = callPackage ../applications/graphics/exrtools { };

fbpanel = callPackage ../applications/window-managers/fbpanel { };

fbreader = callPackage ../applications/misc/fbreader { };
Expand Down

0 comments on commit e5d048a

Please sign in to comment.